pub struct FunctionCounters {
pub name: String,
pub counters: BTreeMap<i32, LineCounters>,
}Fields§
§name: String§counters: BTreeMap<i32, LineCounters>Trait Implementations§
Source§impl Clone for FunctionCounters
impl Clone for FunctionCounters
Source§fn clone(&self) -> FunctionCounters
fn clone(&self) -> FunctionCounters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FunctionCounters
impl Debug for FunctionCounters
Source§impl Default for FunctionCounters
impl Default for FunctionCounters
Source§fn default() -> FunctionCounters
fn default() -> FunctionCounters
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FunctionCounters
impl RefUnwindSafe for FunctionCounters
impl Send for FunctionCounters
impl Sync for FunctionCounters
impl Unpin for FunctionCounters
impl UnsafeUnpin for FunctionCounters
impl UnwindSafe for FunctionCounters
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