pub struct EnrichCandidate {
pub note_id: i64,
pub model_name: String,
pub fields: HashMap<String, String>,
pub empty_fields: Vec<String>,
pub tags: Vec<String>,
}Expand description
A note that is a candidate for enrichment.
Fields§
§note_id: i64The note ID.
model_name: StringThe model (note type) name.
fields: HashMap<String, String>Current field values.
empty_fields: Vec<String>Fields that are empty and need enrichment.
Current tags on the note.
Trait Implementations§
Source§impl Clone for EnrichCandidate
impl Clone for EnrichCandidate
Source§fn clone(&self) -> EnrichCandidate
fn clone(&self) -> EnrichCandidate
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 EnrichCandidate
impl Debug for EnrichCandidate
Auto Trait Implementations§
impl Freeze for EnrichCandidate
impl RefUnwindSafe for EnrichCandidate
impl Send for EnrichCandidate
impl Sync for EnrichCandidate
impl Unpin for EnrichCandidate
impl UnwindSafe for EnrichCandidate
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