pub enum BranchCleanupFinding {
Skipped {
branch: Option<BranchName>,
reason: BranchCleanupSkipReason,
},
Warning {
branch: Option<BranchName>,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for BranchCleanupFinding
impl Clone for BranchCleanupFinding
Source§fn clone(&self) -> BranchCleanupFinding
fn clone(&self) -> BranchCleanupFinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BranchCleanupFinding
impl Debug for BranchCleanupFinding
impl Eq for BranchCleanupFinding
Source§impl From<BranchCleanupFinding> for BranchCleanupOutcome
impl From<BranchCleanupFinding> for BranchCleanupOutcome
Source§fn from(finding: BranchCleanupFinding) -> Self
fn from(finding: BranchCleanupFinding) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BranchCleanupFinding
impl PartialEq for BranchCleanupFinding
Source§fn eq(&self, other: &BranchCleanupFinding) -> bool
fn eq(&self, other: &BranchCleanupFinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BranchCleanupFinding
Auto Trait Implementations§
impl Freeze for BranchCleanupFinding
impl RefUnwindSafe for BranchCleanupFinding
impl Send for BranchCleanupFinding
impl Sync for BranchCleanupFinding
impl Unpin for BranchCleanupFinding
impl UnsafeUnpin for BranchCleanupFinding
impl UnwindSafe for BranchCleanupFinding
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