Type Alias Error

Source
pub type Error = Error;
Expand description

A type which encapsulates recap errors

Aliased Type§

enum Error {
    MissingValue(&'static str),
    Custom(String),
}

Variants§

§

MissingValue(&'static str)

§

Custom(String)