pub enum MdErrorKind {
Eof,
InvalidHeading,
UnterminatedCodeBlock,
UnterminatedCodeSpan,
MaxDepthExceeded,
MaxLineLengthExceeded,
MaxNodeCountExceeded,
MaxListLengthExceeded,
InvalidUtf8,
}Variants§
Eof
InvalidHeading
UnterminatedCodeBlock
UnterminatedCodeSpan
MaxDepthExceeded
MaxLineLengthExceeded
MaxNodeCountExceeded
MaxListLengthExceeded
InvalidUtf8
Trait Implementations§
Source§impl Clone for MdErrorKind
impl Clone for MdErrorKind
Source§fn clone(&self) -> MdErrorKind
fn clone(&self) -> MdErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MdErrorKind
impl Debug for MdErrorKind
Source§impl PartialEq for MdErrorKind
impl PartialEq for MdErrorKind
Source§fn eq(&self, other: &MdErrorKind) -> bool
fn eq(&self, other: &MdErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MdErrorKind
impl Eq for MdErrorKind
impl StructuralPartialEq for MdErrorKind
Auto Trait Implementations§
impl Freeze for MdErrorKind
impl RefUnwindSafe for MdErrorKind
impl Send for MdErrorKind
impl Sync for MdErrorKind
impl Unpin for MdErrorKind
impl UnsafeUnpin for MdErrorKind
impl UnwindSafe for MdErrorKind
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