Type Alias AddOnResult

Source
pub type AddOnResult<C = Empty> = Result<Response<C>, AddOnError>;

Aliased Type§

pub enum AddOnResult<C = Empty> {
    Ok(Response<C>),
    Err(AddOnError),
}

Variants§

§1.0.0

Ok(Response<C>)

Contains the success value

§1.0.0

Err(AddOnError)

Contains the error value