pub trait TryIntoRequest {
    fn try_into_request(self) -> Result<Request<()>, Error>;
}
Expand description

A trait for creating a request from a type.

Required Methods

Attempt to convert this type into a Request.

Implementations on Foreign Types

Implementors