pub enum SuppressionType {
MemcheckAddr(usize),
MemcheckCond,
MemcheckFree,
MemcheckLeak,
MemcheckOverlap,
MemcheckParam,
MemcheckValue(usize),
OtherType {
tool_name: String,
suppression_type: String,
},
}
Variants§
MemcheckAddr(usize)
MemcheckCond
MemcheckFree
MemcheckLeak
MemcheckOverlap
MemcheckParam
MemcheckValue(usize)
OtherType
Trait Implementations§
Source§impl Clone for SuppressionType
impl Clone for SuppressionType
Source§fn clone(&self) -> SuppressionType
fn clone(&self) -> SuppressionType
Returns a copy 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 SuppressionType
impl Debug for SuppressionType
Source§impl Display for SuppressionType
impl Display for SuppressionType
Source§impl PartialEq for SuppressionType
impl PartialEq for SuppressionType
impl StructuralPartialEq for SuppressionType
Auto Trait Implementations§
impl Freeze for SuppressionType
impl RefUnwindSafe for SuppressionType
impl Send for SuppressionType
impl Sync for SuppressionType
impl Unpin for SuppressionType
impl UnwindSafe for SuppressionType
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