pub enum ReadAPIServiceResponse {
    Ok(APIService),
    Other(Result<Option<Value>, Error>),
}Expand description
Use <ReadAPIServiceResponse as Response>::try_from_parts to parse the HTTP response body of APIService::read
Variants§
Trait Implementations§
source§impl Debug for ReadAPIServiceResponse
 
impl Debug for ReadAPIServiceResponse
source§impl Response for ReadAPIServiceResponse
 
impl Response for ReadAPIServiceResponse
source§fn try_from_parts(
    status_code: StatusCode,
    buf: &[u8]
) -> Result<(ReadAPIServiceResponse, usize), ResponseError>
 
fn try_from_parts( status_code: StatusCode, buf: &[u8] ) -> Result<(ReadAPIServiceResponse, usize), ResponseError>
Tries to parse the response from the given status code and response body. Read more