WorktreeTemplateContext

Struct WorktreeTemplateContext 

Source
pub struct WorktreeTemplateContext {
    pub enabled: bool,
    pub strategy: String,
    pub layout_dir_name: String,
    pub integration_mode: String,
    pub default_branch: String,
    pub project_root: String,
}
Expand description

Context for rendering worktree-aware project templates.

This carries the resolved worktree configuration values. Templates use these fields in {% if %} / {{ }} blocks to emit strategy-specific instructions.

Fields§

§enabled: bool

Whether worktrees are enabled.

§strategy: String

Strategy name (e.g., "checkout_subdir", "checkout_siblings", "bare_control_siblings"). Empty string when disabled.

§layout_dir_name: String

Directory name for worktree layouts (e.g., "ito-worktrees").

§integration_mode: String

Integration mode (e.g., "commit_pr", "merge_parent"). Empty string when disabled.

§default_branch: String

Default branch name (e.g., "main").

§project_root: String

Absolute path to the project root. Empty string when not resolved.

Trait Implementations§

Source§

impl Clone for WorktreeTemplateContext

Source§

fn clone(&self) -> WorktreeTemplateContext

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WorktreeTemplateContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for WorktreeTemplateContext

Source§

fn default() -> Self

Creates a WorktreeTemplateContext initialized with safe defaults for a disabled worktree setup.

Defaults:

  • enabled: false
  • strategy: empty string
  • layout_dir_name: “ito-worktrees”
  • integration_mode: empty string
  • default_branch: “main”
  • project_root: empty string
§Examples
use ito_templates::project_templates::WorktreeTemplateContext;
let ctx = WorktreeTemplateContext::default();
assert!(!ctx.enabled);
assert_eq!(ctx.layout_dir_name, "ito-worktrees");
assert_eq!(ctx.default_branch, "main");
assert!(ctx.project_root.is_empty());
Source§

impl Serialize for WorktreeTemplateContext

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.