pub enum SuppressionKind {
SameLine,
NextLine,
}Expand description
Represents the type of suppression directive found.
Variants§
SameLine
Suppress on the same line as the directive.
NextLine
Suppress on the next line after the directive.
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 · 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
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