Struct flame::Note [] [src]

pub struct Note {
    pub name: StrCow,
    pub description: Option<StrCow>,
    pub instant: u64,
    // some fields omitted
}

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

impl Clone for Note
[src]

fn clone(&self) -> Note

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for Note
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.