pub type TreeInspectorResult<T> = Result<T, GenericError>;

Aliased Type§

enum TreeInspectorResult<T> {
    Ok(T),
    Err(GenericError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GenericError)

Contains the error value