Type Alias AdapterResult

Source
pub type AdapterResult<C = Empty> = Result<Response<C>, AdapterError>;

Aliased Type§

pub enum AdapterResult<C = Empty> {
    Ok(Response<C>),
    Err(AdapterError),
}

Variants§

§1.0.0

Ok(Response<C>)

Contains the success value

§1.0.0

Err(AdapterError)

Contains the error value