pub enum NoteSubtypes {
Note(Note),
}Variants§
Trait Implementations§
Source§impl Clone for NoteSubtypes
impl Clone for NoteSubtypes
Source§fn clone(&self) -> NoteSubtypes
fn clone(&self) -> NoteSubtypes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NoteSubtypes
impl Debug for NoteSubtypes
Source§impl<'de> Deserialize<'de> for NoteSubtypes
impl<'de> Deserialize<'de> for NoteSubtypes
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NoteSubtypes> for Note
impl From<NoteSubtypes> for Note
Source§fn from(value: NoteSubtypes) -> Self
fn from(value: NoteSubtypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NoteSubtypes
impl PartialEq for NoteSubtypes
Source§impl Serialize for NoteSubtypes
impl Serialize for NoteSubtypes
impl StructuralPartialEq for NoteSubtypes
Auto Trait Implementations§
impl Freeze for NoteSubtypes
impl RefUnwindSafe for NoteSubtypes
impl Send for NoteSubtypes
impl Sync for NoteSubtypes
impl Unpin for NoteSubtypes
impl UnwindSafe for NoteSubtypes
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