Skip to main content

Result

Type Alias Result 

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

Result alias used by all public operations of this crate.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(ComdirectError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ComdirectError)

Contains the error value