pub struct FunctionData {
pub name: String,
pub count: u32,
}
Fields§
§name: String
§count: u32
Trait Implementations§
Source§impl Clone for FunctionData
impl Clone for FunctionData
Source§fn clone(&self) -> FunctionData
fn clone(&self) -> FunctionData
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 FunctionData
impl Debug for FunctionData
Source§impl<'a> From<&'a FunctionData> for Function
impl<'a> From<&'a FunctionData> for Function
Source§fn from(function_data: &'a FunctionData) -> Self
fn from(function_data: &'a FunctionData) -> Self
Converts to this type from the input type.
Source§impl From<FunctionData> for LCOVRecord
impl From<FunctionData> for LCOVRecord
Source§fn from(input: FunctionData) -> Self
fn from(input: FunctionData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FunctionData
impl PartialEq for FunctionData
impl StructuralPartialEq for FunctionData
Auto Trait Implementations§
impl Freeze for FunctionData
impl RefUnwindSafe for FunctionData
impl Send for FunctionData
impl Sync for FunctionData
impl Unpin for FunctionData
impl UnwindSafe for FunctionData
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