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.