pub struct RepoPlan {
pub conf_path: String,
pub hooks: Vec<String>,
pub matched: bool,
pub env_repo: String,
pub env_url: String,
pub env_host: String,
pub env_namespace: String,
}Expand description
What a repo-mode stamp resolved: the conf it came from, the hooks to run, whether
a [[repo]] matched (false → global post-clone only), and the $GKIT_* env
bits (empty when unmatched).
Fields§
§conf_path: String§hooks: Vec<String>§matched: bool§env_repo: String§env_url: String§env_host: String§env_namespace: StringAuto Trait Implementations§
impl Freeze for RepoPlan
impl RefUnwindSafe for RepoPlan
impl Send for RepoPlan
impl Sync for RepoPlan
impl Unpin for RepoPlan
impl UnsafeUnpin for RepoPlan
impl UnwindSafe for RepoPlan
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