pub struct ExportNote {
pub identifier: String,
pub title: String,
pub text: String,
pub pinned: bool,
pub created_at: Option<i64>,
pub modified_at: Option<i64>,
pub tags: Vec<String>,
}Fields§
§identifier: String§title: String§text: String§pinned: bool§created_at: Option<i64>§modified_at: Option<i64>Trait Implementations§
Source§impl Clone for ExportNote
impl Clone for ExportNote
Source§fn clone(&self) -> ExportNote
fn clone(&self) -> ExportNote
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 ExportNote
impl Debug for ExportNote
Source§impl PartialEq for ExportNote
impl PartialEq for ExportNote
impl Eq for ExportNote
impl StructuralPartialEq for ExportNote
Auto Trait Implementations§
impl Freeze for ExportNote
impl RefUnwindSafe for ExportNote
impl Send for ExportNote
impl Sync for ExportNote
impl Unpin for ExportNote
impl UnsafeUnpin for ExportNote
impl UnwindSafe for ExportNote
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