pub struct StrayMarkDocument {
pub path: PathBuf,
pub filename: String,
pub doc_type: DocType,
pub frontmatter: Frontmatter,
pub body: String,
}Expand description
A parsed StrayMark document
Fields§
§path: PathBuf§filename: String§doc_type: DocType§frontmatter: Frontmatter§body: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for StrayMarkDocument
impl RefUnwindSafe for StrayMarkDocument
impl Send for StrayMarkDocument
impl Sync for StrayMarkDocument
impl Unpin for StrayMarkDocument
impl UnsafeUnpin for StrayMarkDocument
impl UnwindSafe for StrayMarkDocument
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