[go: up one dir, main page]

Type Alias Result

Source
pub type Result<T> = Result<T, Error>;
Expand description

A specialized Result type for this crate.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(TrackableError<ErrorKind>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TrackableError<ErrorKind>)

Contains the error value