pub struct MarkdownError {
pub file: String,
pub line: usize,
pub column: usize,
pub message: String,
}Fields§
§file: String§line: usize§column: usize§message: StringTrait Implementations§
Source§impl Clone for MarkdownError
impl Clone for MarkdownError
Source§fn clone(&self) -> MarkdownError
fn clone(&self) -> MarkdownError
Returns a duplicate of the value. Read more
1.0.0 · 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 MarkdownError
impl Debug for MarkdownError
Source§impl Display for MarkdownError
impl Display for MarkdownError
Source§impl From<MarkdownError> for PackError
impl From<MarkdownError> for PackError
Source§fn from(err: MarkdownError) -> Self
fn from(err: MarkdownError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarkdownError
impl RefUnwindSafe for MarkdownError
impl Send for MarkdownError
impl Sync for MarkdownError
impl Unpin for MarkdownError
impl UnwindSafe for MarkdownError
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