pub struct NoteMapping {
pub source_key: String,
pub id: Option<Uuid>,
pub status: String,
}Expand description
The API-side outcome for one registered note.
Fields§
§source_key: String§id: Option<Uuid>None when the note could not be stored (unresolved).
status: Stringcreated | updated | unchanged | unresolved
Trait Implementations§
Source§impl Clone for NoteMapping
impl Clone for NoteMapping
Source§fn clone(&self) -> NoteMapping
fn clone(&self) -> NoteMapping
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NoteMapping
impl Debug for NoteMapping
Source§impl<'de> Deserialize<'de> for NoteMapping
impl<'de> Deserialize<'de> for NoteMapping
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
Auto Trait Implementations§
impl Freeze for NoteMapping
impl RefUnwindSafe for NoteMapping
impl Send for NoteMapping
impl Sync for NoteMapping
impl Unpin for NoteMapping
impl UnsafeUnpin for NoteMapping
impl UnwindSafe for NoteMapping
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