pub struct NoteDescribeResult {
pub id: i64,
pub path: String,
pub title: String,
pub mtime: i64,
pub hash: String,
pub created_at: String,
pub updated_at: String,
pub frontmatter: Option<String>,
}Expand description
Metadata for a single note
Fields§
§id: i64§path: String§title: String§mtime: i64§hash: String§created_at: String§updated_at: String§frontmatter: Option<String>Trait Implementations§
Source§impl Debug for NoteDescribeResult
impl Debug for NoteDescribeResult
Auto Trait Implementations§
impl Freeze for NoteDescribeResult
impl RefUnwindSafe for NoteDescribeResult
impl Send for NoteDescribeResult
impl Sync for NoteDescribeResult
impl Unpin for NoteDescribeResult
impl UnsafeUnpin for NoteDescribeResult
impl UnwindSafe for NoteDescribeResult
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