pub struct ExportedNote {
pub note_id: i64,
pub model_name: String,
pub deck_name: String,
pub fields: HashMap<String, String>,
pub tags: Vec<String>,
}Expand description
Exported note with all fields and metadata.
Fields§
§note_id: i64The note ID.
model_name: StringThe model (note type) name.
deck_name: StringThe deck name.
fields: HashMap<String, String>Field values keyed by field name.
Tags on the note.
Trait Implementations§
Source§impl Clone for ExportedNote
impl Clone for ExportedNote
Source§fn clone(&self) -> ExportedNote
fn clone(&self) -> ExportedNote
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 ExportedNote
impl Debug for ExportedNote
Auto Trait Implementations§
impl Freeze for ExportedNote
impl RefUnwindSafe for ExportedNote
impl Send for ExportedNote
impl Sync for ExportedNote
impl Unpin for ExportedNote
impl UnwindSafe for ExportedNote
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