Struct iai_callgrind_runner::api::FlamegraphConfig
source · pub struct FlamegraphConfig {
pub kind: Option<FlamegraphKind>,
pub negate_differential: Option<bool>,
pub normalize_differential: Option<bool>,
pub event_kinds: Option<Vec<EventKind>>,
pub direction: Option<Direction>,
pub title: Option<String>,
pub subtitle: Option<String>,
pub min_width: Option<f64>,
}Available on crate feature
api only.Fields§
§kind: Option<FlamegraphKind>§negate_differential: Option<bool>§normalize_differential: Option<bool>§event_kinds: Option<Vec<EventKind>>§direction: Option<Direction>§title: Option<String>§subtitle: Option<String>§min_width: Option<f64>Trait Implementations§
source§impl Clone for FlamegraphConfig
impl Clone for FlamegraphConfig
source§fn clone(&self) -> FlamegraphConfig
fn clone(&self) -> FlamegraphConfig
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 FlamegraphConfig
impl Debug for FlamegraphConfig
source§impl Default for FlamegraphConfig
impl Default for FlamegraphConfig
source§fn default() -> FlamegraphConfig
fn default() -> FlamegraphConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FlamegraphConfig
impl<'de> Deserialize<'de> for FlamegraphConfig
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 From<FlamegraphConfig> for Config
Available on crate feature runner only.
impl From<FlamegraphConfig> for Config
Available on crate feature
runner only.source§fn from(value: FlamegraphConfig) -> Self
fn from(value: FlamegraphConfig) -> Self
Converts to this type from the input type.
source§impl PartialEq for FlamegraphConfig
impl PartialEq for FlamegraphConfig
source§impl Serialize for FlamegraphConfig
impl Serialize for FlamegraphConfig
impl StructuralPartialEq for FlamegraphConfig
Auto Trait Implementations§
impl Freeze for FlamegraphConfig
impl RefUnwindSafe for FlamegraphConfig
impl Send for FlamegraphConfig
impl Sync for FlamegraphConfig
impl Unpin for FlamegraphConfig
impl UnwindSafe for FlamegraphConfig
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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