pub enum FlamegraphKind {
Regular,
Differential,
All,
None,
}
Available on crate feature
default
only.Expand description
The kind of Flamegraph
which is going to be constructed
Variants§
Regular
The regular flamegraph for the new callgrind run
Differential
A differential flamegraph showing the differences between the new and old callgrind run
All
All flamegraph kinds that can be constructed (Regular
and Differential
). This
is the default.
None
Do not produce any flamegraphs
Trait Implementations§
source§impl Clone for FlamegraphKind
impl Clone for FlamegraphKind
source§fn clone(&self) -> FlamegraphKind
fn clone(&self) -> FlamegraphKind
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 FlamegraphKind
impl Debug for FlamegraphKind
source§impl<'de> Deserialize<'de> for FlamegraphKind
impl<'de> Deserialize<'de> for FlamegraphKind
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlamegraphKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlamegraphKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for FlamegraphKind
impl PartialEq for FlamegraphKind
source§impl Serialize for FlamegraphKind
impl Serialize for FlamegraphKind
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 FlamegraphKind
impl Eq for FlamegraphKind
impl StructuralPartialEq for FlamegraphKind
Auto Trait Implementations§
impl Freeze for FlamegraphKind
impl RefUnwindSafe for FlamegraphKind
impl Send for FlamegraphKind
impl Sync for FlamegraphKind
impl Unpin for FlamegraphKind
impl UnwindSafe for FlamegraphKind
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)