Ev3Result

Type Alias Ev3Result 

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

The result type for the ev3dev_rs crate.

Aliased Type§

pub enum Ev3Result<T> {
    Ok(T),
    Err(Ev3Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Ev3Error)

Contains the error value