pub struct Config {
pub max_depth: usize,
pub ignore: Vec<String>,
pub worktree_root: PathBuf,
pub auto_init: bool,
}Expand description
Resolved configuration with defaults applied.
Fields§
§max_depth: usizeMaximum directory depth when scanning for git projects.
ignore: Vec<String>Glob patterns for directories to skip during discovery.
worktree_root: PathBufParent directory where new worktrees are created.
auto_init: boolWhether to run .tam.toml after creating a worktree.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more