pub enum CoverageGateOutcome {
Allow {
stats: CoverageStats,
},
Warn {
stats: CoverageStats,
warning_text: String,
},
Block {
stats: CoverageStats,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for CoverageGateOutcome
impl Clone for CoverageGateOutcome
Source§fn clone(&self) -> CoverageGateOutcome
fn clone(&self) -> CoverageGateOutcome
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 moreAuto Trait Implementations§
impl Freeze for CoverageGateOutcome
impl RefUnwindSafe for CoverageGateOutcome
impl Send for CoverageGateOutcome
impl Sync for CoverageGateOutcome
impl Unpin for CoverageGateOutcome
impl UnsafeUnpin for CoverageGateOutcome
impl UnwindSafe for CoverageGateOutcome
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