pub enum Scope {
All,
Workspace {
name: String,
},
Repos {
repos: Vec<String>,
},
}Expand description
The scope a repograph context invocation was resolved against.
Echoed back into the payload so downstream consumers can identify which slice of the registry they’re seeing without parsing back from the repos array.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Scope
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnsafeUnpin for Scope
impl UnwindSafe for Scope
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