pub struct AdoptPlan {
pub start_path: PathBuf,
pub refs: Vec<String>,
pub import_all_refs: bool,
}Expand description
Pure adopt preflight plan. CLI discovers Git root, bootstraps, and imports.
Fields§
§start_path: PathBufStart path for Git discovery (not yet canonicalized).
refs: Vec<String>§import_all_refs: boolTrue when no explicit --ref was supplied.
Trait Implementations§
impl Eq for AdoptPlan
impl StructuralPartialEq for AdoptPlan
Auto Trait Implementations§
impl Freeze for AdoptPlan
impl RefUnwindSafe for AdoptPlan
impl Send for AdoptPlan
impl Sync for AdoptPlan
impl Unpin for AdoptPlan
impl UnsafeUnpin for AdoptPlan
impl UnwindSafe for AdoptPlan
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