pub enum SuppressionKind {
Allow {
scope: AllowScope,
},
Disable,
Enable,
}Variants§
Trait Implementations§
Source§impl Clone for SuppressionKind
impl Clone for SuppressionKind
Source§fn clone(&self) -> SuppressionKind
fn clone(&self) -> SuppressionKind
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 SuppressionKind
impl Debug for SuppressionKind
Source§impl PartialEq for SuppressionKind
impl PartialEq for SuppressionKind
Source§fn eq(&self, other: &SuppressionKind) -> bool
fn eq(&self, other: &SuppressionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SuppressionKind
impl Eq for SuppressionKind
impl StructuralPartialEq for SuppressionKind
Auto Trait Implementations§
impl Freeze for SuppressionKind
impl RefUnwindSafe for SuppressionKind
impl Send for SuppressionKind
impl Sync for SuppressionKind
impl Unpin for SuppressionKind
impl UnsafeUnpin for SuppressionKind
impl UnwindSafe for SuppressionKind
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