pub struct EnrichQuery {
pub search: String,
pub empty_fields: Vec<String>,
}Expand description
Query parameters for finding notes to enrich.
Fields§
§search: StringAnki search query to filter notes.
empty_fields: Vec<String>Field names that should be empty (any of these being empty qualifies the note).
Trait Implementations§
Source§impl Clone for EnrichQuery
impl Clone for EnrichQuery
Source§fn clone(&self) -> EnrichQuery
fn clone(&self) -> EnrichQuery
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 moreAuto Trait Implementations§
impl Freeze for EnrichQuery
impl RefUnwindSafe for EnrichQuery
impl Send for EnrichQuery
impl Sync for EnrichQuery
impl Unpin for EnrichQuery
impl UnwindSafe for EnrichQuery
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