pub struct AlgoTiming {
pub name: String,
pub time_ns: u64,
}Expand description
Timing info for a single algorithm
Fields§
§name: String§time_ns: u64Trait Implementations§
Source§impl Clone for AlgoTiming
impl Clone for AlgoTiming
Source§fn clone(&self) -> AlgoTiming
fn clone(&self) -> AlgoTiming
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 moreAuto Trait Implementations§
impl Freeze for AlgoTiming
impl RefUnwindSafe for AlgoTiming
impl Send for AlgoTiming
impl Sync for AlgoTiming
impl Unpin for AlgoTiming
impl UnwindSafe for AlgoTiming
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