pub type DescriberResult<T> = Result<T, DescriberError>;
Expand description

The result type.

Aliased Type§

enum DescriberResult<T> {
    Ok(T),
    Err(DescriberError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DescriberError)

Contains the error value