ResultE

Type Alias ResultE 

Source
pub type ResultE<T> = Result<T, Error>;
Expand description

Alias for a Result with the error type serde_osc::error::Error.

Aliased Type§

pub enum ResultE<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value