Trait spin_sdk::http::conversions::TryIntoRequest
source · 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