pub struct FrontMatter {
pub date: Option<String>,
pub description: Option<String>,
pub title: Option<String>,
pub slug: Option<String>,
pub author: Option<String>,
pub draft: bool,
pub slides: bool,
pub skip_index: bool,
}Fields§
§date: Option<String>§description: Option<String>§title: Option<String>§slug: Option<String>§draft: bool§slides: bool§skip_index: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for FrontMatter
impl RefUnwindSafe for FrontMatter
impl Send for FrontMatter
impl Sync for FrontMatter
impl Unpin for FrontMatter
impl UnwindSafe for FrontMatter
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