pub struct SingleNote {
pub content: String,
pub note: Note,
}
Fields§
§content: String
§note: Note
Trait Implementations§
Source§impl Clone for SingleNote
impl Clone for SingleNote
Source§fn clone(&self) -> SingleNote
fn clone(&self) -> SingleNote
Returns a copy 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 SingleNote
impl Debug for SingleNote
Source§impl<'de> Deserialize<'de> for SingleNote
impl<'de> Deserialize<'de> for SingleNote
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 PartialEq for SingleNote
impl PartialEq for SingleNote
impl Eq for SingleNote
impl StructuralPartialEq for SingleNote
Auto Trait Implementations§
impl Freeze for SingleNote
impl RefUnwindSafe for SingleNote
impl Send for SingleNote
impl Sync for SingleNote
impl Unpin for SingleNote
impl UnwindSafe for SingleNote
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