Result

Type Alias Result 

Source
pub type Result<T> = Result<T, AuditError>;
Available on crate feature doc-audit only.
Expand description

Result type for the documentation audit system.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AuditError)

Contains the error value