LicenseResult

Type Alias LicenseResult 

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

Convenient alias for results throughout Talos.

Aliased Type§

pub enum LicenseResult<T> {
    Ok(T),
    Err(LicenseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LicenseError)

Contains the error value