pub struct ComparisonNote {
pub note_id: i64,
pub key_value: String,
pub tags: Vec<String>,
}Expand description
A note in a comparison result.
Fields§
§note_id: i64The note ID.
key_value: StringThe value of the key field.
The note’s tags.
Trait Implementations§
Source§impl Clone for ComparisonNote
impl Clone for ComparisonNote
Source§fn clone(&self) -> ComparisonNote
fn clone(&self) -> ComparisonNote
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 ComparisonNote
impl Debug for ComparisonNote
Auto Trait Implementations§
impl Freeze for ComparisonNote
impl RefUnwindSafe for ComparisonNote
impl Send for ComparisonNote
impl Sync for ComparisonNote
impl Unpin for ComparisonNote
impl UnwindSafe for ComparisonNote
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