Type Alias rustemo::Result

source ·
pub type Result<R> = Result<R, Error>;

Aliased Type§

enum Result<R> {
    Ok(R),
    Err(Error),
}

Variants§

§1.0.0

Ok(R)

Contains the success value

§1.0.0

Err(Error)

Contains the error value

Trait Implementations§

source§

impl<R> From<Error> for Result<R>

source§

fn from(value: Error) -> Self

Converts to this type from the input type.