pub type ResponseResult = Result<(), ResponseError>;Expand description
An alias for Result<(), ResponseError>, representing the result type returned after writing an HTTP response.
Aliased Type§
pub enum ResponseResult {
Ok(()),
Err(ResponseError),
}