Struct chrome_remote_interface_model::profiler::ProfileNode [−][src]
Profile node. Holds callsite information, execution statistics and child nodes.
Implementations
impl ProfileNode[src]
pub fn builder() -> ProfileNodeBuilder[src]
pub fn id(&self) -> u32[src]
Unique id of the node.
pub fn call_frame(&self) -> &CallFrame[src]
Function location.
pub fn hit_count(&self) -> Option<&u32>[src]
Number of samples where this node was on top of the call stack.
pub fn children(&self) -> Option<&Vec<u32>>[src]
Child node ids.
pub fn deopt_reason(&self) -> Option<&String>[src]
The reason of being not optimized. The function may be deoptimized or marked as don't optimize.
pub fn position_ticks(&self) -> Option<&Vec<PositionTickInfo>>[src]
An array of source position ticks.
Trait Implementations
impl Clone for ProfileNode[src]
fn clone(&self) -> ProfileNode[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ProfileNode[src]
impl<'de> Deserialize<'de> for ProfileNode[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for ProfileNode[src]
Auto Trait Implementations
impl RefUnwindSafe for ProfileNode[src]
impl Send for ProfileNode[src]
impl Sync for ProfileNode[src]
impl Unpin for ProfileNode[src]
impl UnwindSafe for ProfileNode[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,