pub struct NodeTiming {
pub id: String,
pub tag: String,
pub duration: Duration,
pub level: usize,
}Expand description
Per-node execution time from a single Forward pass.
Fields§
§id: String§tag: String§duration: Duration§level: usizeTrait Implementations§
Source§impl Clone for NodeTiming
impl Clone for NodeTiming
Source§fn clone(&self) -> NodeTiming
fn clone(&self) -> NodeTiming
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 NodeTiming
impl RefUnwindSafe for NodeTiming
impl Send for NodeTiming
impl Sync for NodeTiming
impl Unpin for NodeTiming
impl UnsafeUnpin for NodeTiming
impl UnwindSafe for NodeTiming
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