LycheeResult

Type Alias LycheeResult 

Source
pub type LycheeResult<T> = Result<T>;
Expand description

The lychee Result type, aliased to avoid conflicting with std::result::Result.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ErrorKind)

Contains the error value