pub struct FunctionCallMetric {
pub function_id: usize,
pub file_id: usize,
pub path: String,
pub name: String,
pub calls: usize,
}Fields§
§function_id: usize§file_id: usize§path: String§name: String§calls: usizeTrait Implementations§
Source§impl Clone for FunctionCallMetric
impl Clone for FunctionCallMetric
Source§fn clone(&self) -> FunctionCallMetric
fn clone(&self) -> FunctionCallMetric
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 FunctionCallMetric
impl Debug for FunctionCallMetric
Source§impl<'de> Deserialize<'de> for FunctionCallMetric
impl<'de> Deserialize<'de> for FunctionCallMetric
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
Auto Trait Implementations§
impl Freeze for FunctionCallMetric
impl RefUnwindSafe for FunctionCallMetric
impl Send for FunctionCallMetric
impl Sync for FunctionCallMetric
impl Unpin for FunctionCallMetric
impl UnsafeUnpin for FunctionCallMetric
impl UnwindSafe for FunctionCallMetric
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