pub struct CanAddNotesEntry {
pub deck_name: String,
pub model_name: String,
pub fields: HashMap<String, String>,
pub tags: Vec<String>,
}Fields§
§deck_name: StringName of the deck where the note will be added.
model_name: StringName of the model inside the deck where the note will be added.
fields: HashMap<String, String>Fields available in the note.
The tags of the note.
Trait Implementations§
Source§impl Clone for CanAddNotesEntry
impl Clone for CanAddNotesEntry
Source§fn clone(&self) -> CanAddNotesEntry
fn clone(&self) -> CanAddNotesEntry
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 CanAddNotesEntry
impl Debug for CanAddNotesEntry
Source§impl Default for CanAddNotesEntry
impl Default for CanAddNotesEntry
Source§fn default() -> CanAddNotesEntry
fn default() -> CanAddNotesEntry
Returns the “default value” for a type. Read more
impl Eq for CanAddNotesEntry
Source§impl PartialEq for CanAddNotesEntry
impl PartialEq for CanAddNotesEntry
Source§fn eq(&self, other: &CanAddNotesEntry) -> bool
fn eq(&self, other: &CanAddNotesEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CanAddNotesEntry
impl Serialize for CanAddNotesEntry
impl StructuralPartialEq for CanAddNotesEntry
Auto Trait Implementations§
impl Freeze for CanAddNotesEntry
impl RefUnwindSafe for CanAddNotesEntry
impl Send for CanAddNotesEntry
impl Sync for CanAddNotesEntry
impl Unpin for CanAddNotesEntry
impl UnsafeUnpin for CanAddNotesEntry
impl UnwindSafe for CanAddNotesEntry
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