Skip to main content

ThingdResult

Type Alias ThingdResult 

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

Result type returned by thingd core operations.

Aliased Type§

pub enum ThingdResult<T> {
    Ok(T),
    Err(ThingdError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ThingdError)

Contains the error value