pub struct Trace<E: Clone + PartialEq> {
pub entries: Vec<TraceEntry<E>>,
pub enabled: bool,
}Expand description
Ordered record of all effects. Only populated when enabled is true.
Ephemeral — not serialized, not saved.
Fields§
§entries: Vec<TraceEntry<E>>§enabled: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for Trace<E>
impl<E> RefUnwindSafe for Trace<E>where
E: RefUnwindSafe,
impl<E> Send for Trace<E>where
E: Send,
impl<E> Sync for Trace<E>where
E: Sync,
impl<E> Unpin for Trace<E>where
E: Unpin,
impl<E> UnsafeUnpin for Trace<E>
impl<E> UnwindSafe for Trace<E>where
E: UnwindSafe,
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