Type Alias ReplyResult

Source
pub type ReplyResult<T> = Result<T, APIResponseError>;
Expand description

ReplyResult is returned when send a request

Aliased Type§

pub enum ReplyResult<T> {
    Ok(T),
    Err(Box<dyn Error>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Box<dyn Error>)

Contains the error value