pub type ObjectClientResult<T, S, C> = Result<T, ObjectClientError<S, C>>;
Expand description

Shorthand type for the result of an object client request

Aliased Type§

enum ObjectClientResult<T, S, C> {
    Ok(T),
    Err(ObjectClientError<S, C>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ObjectClientError<S, C>)

Contains the error value