Skip to main content

ContentResult

Type Alias ContentResult 

Source
pub type ContentResult<T> = Result<T, ContentError>;

Aliased Type§

pub enum ContentResult<T> {
    Ok(T),
    Err(ContentError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ContentError)

Contains the error value