pub struct NoteModTime {
pub note_id: i64,
pub mod_time: i64,
}Expand description
Modification time information for a note.
Fields§
§note_id: i64The note ID.
mod_time: i64Modification timestamp (seconds since epoch).
Trait Implementations§
Source§impl Clone for NoteModTime
impl Clone for NoteModTime
Source§fn clone(&self) -> NoteModTime
fn clone(&self) -> NoteModTime
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 NoteModTime
impl Debug for NoteModTime
Source§impl<'de> Deserialize<'de> for NoteModTime
impl<'de> Deserialize<'de> for NoteModTime
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NoteModTime, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NoteModTime, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NoteModTime
impl RefUnwindSafe for NoteModTime
impl Send for NoteModTime
impl Sync for NoteModTime
impl Unpin for NoteModTime
impl UnwindSafe for NoteModTime
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