Skip to main content

RsonResult

Type Alias RsonResult 

Source
pub type RsonResult<T> = Result<T, RsonError>;
Expand description

Result type alias for RSON operations.

Aliased Type§

pub enum RsonResult<T> {
    Ok(T),
    Err(RsonError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RsonError)

Contains the error value