pub trait CMarkItemWithNote {
// Required method
fn with_note(self, note: Cow<'static, str>) -> Arc<CMarkItem>;
}Expand description
A helper trait to mark an event with the specified note.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".