Enum libimagentrymarkdown::error::MarkdownErrorKind []

pub enum MarkdownErrorKind {
    Msg(String),
    StoreError(StoreErrorKind),
    LinkError(LinkErrorKind),
    RefError(RefErrorKind),
    UrlParserError(ParseError),
    MarkdownRenderError,
    LinkParsingError,
    StoreGetError(StoreId),
    UndecidableLinkType(String),
    UrlProcessingError(Url),
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl MarkdownErrorKind

A string describing the error kind.

Trait Implementations

impl From<MarkdownErrorKind> for MarkdownError

Performs the conversion.

impl Debug for MarkdownErrorKind

Formats the value using the given formatter. Read more

impl Display for MarkdownErrorKind

Formats the value using the given formatter. Read more

impl From<StoreErrorKind> for MarkdownErrorKind

Performs the conversion.

impl From<LinkErrorKind> for MarkdownErrorKind

Performs the conversion.

impl From<RefErrorKind> for MarkdownErrorKind

Performs the conversion.

impl<'a> From<&'a str> for MarkdownErrorKind

Performs the conversion.

impl From<String> for MarkdownErrorKind

Performs the conversion.

impl From<MarkdownError> for MarkdownErrorKind

Performs the conversion.

Auto Trait Implementations