Enum cagra::error::Error [] [src]

pub enum Error {
    UnaryOpTypeError(UnaryOpTypeError),
    BinOpTypeError(BinOpTypeError),
    CastError(CastError),
    NodeTypeError(NodeTypeError),
}

Master error enum of cagra

Variants

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<UnaryOpTypeError> for Error
[src]

[src]

Performs the conversion.

impl From<BinOpTypeError> for Error
[src]

[src]

Performs the conversion.

impl From<CastError> for Error
[src]

[src]

Performs the conversion.

impl From<NodeTypeError> for Error
[src]

[src]

Performs the conversion.