TenantResult

Type Alias TenantResult 

Source
pub type TenantResult<T> = Result<T, TenantError>;
Expand description

Result type for tenant operations.

Aliased Type§

pub enum TenantResult<T> {
    Ok(T),
    Err(TenantError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TenantError)

Contains the error value