Type Alias EntityResult

Source
pub type EntityResult<T> = Result<T, EntityError>;

Aliased Type§

enum EntityResult<T> {
    Ok(T),
    Err(EntityError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EntityError)

Contains the error value