Enum gazetta_core::error::SourceError [] [src]

pub enum SourceError {
    Parse(ScanError),
    Read(Error),
    Config(Cow<'static, str>),
}

Variants

Trait Implementations

impl Debug for SourceError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SourceError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for SourceError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for SourceError
[src]

[src]

Performs the conversion.

impl From<ParseError> for SourceError
[src]

[src]

Performs the conversion.

impl From<ScanError> for SourceError
[src]

[src]

Performs the conversion.

impl From<PatternError> for SourceError
[src]

[src]

Performs the conversion.

impl From<&'static str> for SourceError
[src]

[src]

Performs the conversion.

impl From<String> for SourceError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SourceError

impl Sync for SourceError