Skip to main content

NoteBehavior

Trait NoteBehavior 

Source
pub trait NoteBehavior:
    NoteIdentity
    + NoteLifecycle
    + NotePrompts
    + Send
    + Sync {
    // Required method
    fn type_name(&self) -> &'static str;
}
Expand description

Combined trait for a note type behavior. All first-class types implement this.

Required Methods§

Source

fn type_name(&self) -> &'static str

Get the type name for this behavior.

Implementors§