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§
Ok(CategoryId<'a>)
Contains the success value
Err(CategoryIdError<'a>)
Contains the error value