pub trait TryIntoRequest {
type Error;
// Required method
fn try_into_request(self) -> Result<Request, Self::Error>;
}
Expand description
Turn a type into a Request
Required Associated Types§
Required Methods§
Sourcefn try_into_request(self) -> Result<Request, Self::Error>
fn try_into_request(self) -> Result<Request, Self::Error>
Turn self
into a Request