OneWireResult

Type Alias OneWireResult 

Source
pub type OneWireResult<T, E> = Result<T, OneWireError<E>>;
Expand description

Error type for 1-Wire operations.

Aliased Type§

pub enum OneWireResult<T, E> {
    Ok(T),
    Err(OneWireError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OneWireError<E>)

Contains the error value