pub enum ValgrindTool {
Callgrind,
Cachegrind,
DHAT,
Memcheck,
Helgrind,
DRD,
Massif,
BBV,
}
Available on crate feature
default
only.Expand description
The valgrind tools which can be run
Note the default changes from Callgrind
to Cachegrind
if the cachegrind
feature is
selected.
Variants§
Implementations§
Source§impl ValgrindTool
impl ValgrindTool
Trait Implementations§
Source§impl Clone for ValgrindTool
impl Clone for ValgrindTool
Source§fn clone(&self) -> ValgrindTool
fn clone(&self) -> ValgrindTool
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ValgrindTool
impl Debug for ValgrindTool
Source§impl<'de> Deserialize<'de> for ValgrindTool
impl<'de> Deserialize<'de> for ValgrindTool
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ValgrindTool, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ValgrindTool, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ValgrindTool
impl Display for ValgrindTool
Source§impl Hash for ValgrindTool
impl Hash for ValgrindTool
Source§impl PartialEq for ValgrindTool
impl PartialEq for ValgrindTool
Source§impl Serialize for ValgrindTool
impl Serialize for ValgrindTool
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ValgrindTool
impl Eq for ValgrindTool
impl StructuralPartialEq for ValgrindTool
Auto Trait Implementations§
impl Freeze for ValgrindTool
impl RefUnwindSafe for ValgrindTool
impl Send for ValgrindTool
impl Sync for ValgrindTool
impl Unpin for ValgrindTool
impl UnwindSafe for ValgrindTool
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