Type Alias ResponseResult

Source
pub type ResponseResult = Result<(), ResponseError>;
Expand description

Result type for response operations.

Aliased Type§

pub enum ResponseResult {
    Ok(()),
    Err(ResponseError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(ResponseError)

Contains the error value