CategoryIdResult

Type Alias CategoryIdResult 

Source
pub type CategoryIdResult<'a> = Result<CategoryId<'a>, CategoryIdError<'a>>;
Expand description

Result type alias holding either a CategoryId or CategoryIdError

Aliased Type§

pub enum CategoryIdResult<'a> {
    Ok(CategoryId<'a>),
    Err(CategoryIdError<'a>),
}

Variants§

§1.0.0

Ok(CategoryId<'a>)

Contains the success value

§1.0.0

Err(CategoryIdError<'a>)

Contains the error value