pub enum Class {
Kept {
reason: String,
},
Candidate,
WorktreeBound {
path: String,
},
Confirmed {
request: String,
},
Unconfirmed {
detail: String,
},
Unknown {
detail: String,
},
}Expand description
What the report says about one gone branch.
Variants§
Kept
Guarded out of the candidate set, with the guard’s reason.
Candidate
Gone upstream and unguarded: a candidate, not proof.
WorktreeBound
Checked out in a worktree: the worktree owns the cleanup, and the worktree verb is the one that performs it.
Confirmed
A merged request’s recorded head equals this tip.
Unconfirmed
The forge answered and no merged request records this tip.
Unknown
The forge could not answer; an apply keeps the branch.
Trait Implementations§
impl Eq for Class
impl StructuralPartialEq for Class
Auto Trait Implementations§
impl Freeze for Class
impl RefUnwindSafe for Class
impl Send for Class
impl Sync for Class
impl Unpin for Class
impl UnsafeUnpin for Class
impl UnwindSafe for Class
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