Skip to main content

OwnershipResult

Type Alias OwnershipResult 

Source
pub type OwnershipResult<T> = Result<T, OwnershipError>;
Expand description

Result type for ownership operations

Aliased Type§

pub enum OwnershipResult<T> {
    Ok(T),
    Err(OwnershipError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OwnershipError)

Contains the error value