Enum chase::ChaseError [] [src]

pub enum ChaseError {
    IoError(Error),
    ChannelSendError(SendError<(String, Line, Pos)>),
    StreamSendError(SendError<(String, Line, Pos)>),
    Custom(Box<Error + Send + Sync>),
}

Variants

Trait Implementations

impl Debug for ChaseError
[src]

[src]

Formats the value using the given formatter.

impl Display for ChaseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ChaseError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<Error> for ChaseError
[src]

[src]

Performs the conversion.

impl From<SendError<(String, Line, Pos)>> for ChaseError
[src]

[src]

Performs the conversion.

impl From<SendError<(String, Line, Pos)>> for ChaseError
[src]

[src]

Performs the conversion.