pub enum MultiSpec {
WithIssue(IssueRef),
BareRepo {
owner: String,
repo: String,
},
}Expand description
A spec for one repo in a multi-workspace.
Variants§
WithIssue(IssueRef)
Repo paired with an issue — creates a branch, folder is <repo>-<id>.
BareRepo
Bare repo slug — checked out on its default branch, folder is <repo>.
Auto Trait Implementations§
impl Freeze for MultiSpec
impl RefUnwindSafe for MultiSpec
impl Send for MultiSpec
impl Sync for MultiSpec
impl Unpin for MultiSpec
impl UnsafeUnpin for MultiSpec
impl UnwindSafe for MultiSpec
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