Enum cagra::error::Error
[−]
[src]
pub enum Error { UnaryOpTypeError(UnaryOpTypeError), BinOpTypeError(BinOpTypeError), CastError(CastError), NodeTypeError(NodeTypeError), }
Master error enum of cagra
Variants
UnaryOpTypeError(UnaryOpTypeError)
BinOpTypeError(BinOpTypeError)
CastError(CastError)
NodeTypeError(NodeTypeError)
Trait Implementations
impl Debug for Error
[src]
impl From<UnaryOpTypeError> for Error
[src]
fn from(val: UnaryOpTypeError) -> Self
[src]
Performs the conversion.
impl From<BinOpTypeError> for Error
[src]
fn from(val: BinOpTypeError) -> Self
[src]
Performs the conversion.
impl From<CastError> for Error
[src]
impl From<NodeTypeError> for Error
[src]
fn from(val: NodeTypeError) -> Self
[src]
Performs the conversion.