Skip to main content

AttributeResult

Type Alias AttributeResult 

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

Fallible result for validated attribute constructors.

Aliased Type§

pub enum AttributeResult<T> {
    Ok(T),
    Err(AttributeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AttributeError)

Contains the error value