pub enum SerdeFMError {
YamlParseError(Error),
MissingFrontMatter,
}Expand description
Errors generated by this crate
Variants§
YamlParseError(Error)
Errors originating from serde-yaml
MissingFrontMatter
Front matter could not be found
Trait Implementations§
Source§impl Debug for SerdeFMError
impl Debug for SerdeFMError
Source§impl From<Error> for SerdeFMError
impl From<Error> for SerdeFMError
Source§fn from(e: Error) -> SerdeFMError
fn from(e: Error) -> SerdeFMError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerdeFMError
impl !RefUnwindSafe for SerdeFMError
impl Send for SerdeFMError
impl Sync for SerdeFMError
impl Unpin for SerdeFMError
impl !UnwindSafe for SerdeFMError
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