pub enum Minted {
Already {
branch: String,
others: Vec<String>,
},
Absent,
Unknown {
detail: String,
},
}Expand description
What the forge already carries for one issue.
Variants§
Already
The forge already carries a branch for this issue.
Fields
Absent
The forge carries none.
Unknown
The forge could not answer; nothing is created.
Trait Implementations§
impl Eq for Minted
impl StructuralPartialEq for Minted
Auto Trait Implementations§
impl Freeze for Minted
impl RefUnwindSafe for Minted
impl Send for Minted
impl Sync for Minted
impl Unpin for Minted
impl UnsafeUnpin for Minted
impl UnwindSafe for Minted
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