pub struct Note {
pub name: StrCow,
pub description: Option<StrCow>,
pub instant: u64,
/* private fields */
}
Expand description
A note for use in debugging.
Fields§
§name: StrCow
A short name describing what happened at some instant in time
description: Option<StrCow>
A longer description
instant: u64
The time that the note was added
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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