pub enum ValgrindTool {
Callgrind,
Cachegrind,
DHAT,
Memcheck,
Helgrind,
DRD,
Massif,
BBV,
}
Available on crate feature
api
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
Sourcepub fn has_output_file(&self) -> bool
pub fn has_output_file(&self) -> bool
Return true if this tool has output files in addition to log files
Sourcepub fn has_xtree_file(&self) -> bool
pub fn has_xtree_file(&self) -> bool
Return true if this tool supports xtree memory files
Sourcepub fn has_xleak_file(&self) -> bool
pub fn has_xleak_file(&self) -> bool
Return true if this tool supports xleak files
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§fn clone_from(&mut self, source: &Self)
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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::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 FromStr for ValgrindTool
Available on crate feature runner
only.
impl FromStr for ValgrindTool
Available on crate feature
runner
only.Source§impl Hash for ValgrindTool
impl Hash for ValgrindTool
Source§impl JsonSchema for ValgrindTool
impl JsonSchema for ValgrindTool
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for ValgrindTool
impl PartialEq for ValgrindTool
Source§impl Serialize for ValgrindTool
impl Serialize for ValgrindTool
Source§impl TryFrom<&str> for ValgrindTool
Available on crate feature runner
only.
impl TryFrom<&str> for ValgrindTool
Available on crate feature
runner
only.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more