pub trait RequestURLBuilderExtwhere
Self: Sized,{
type Built: RequestURL + From<Self>;
// Provided method
fn build_and_get(
self,
) -> impl Future<Output = Result<<Self::Built as RequestURL>::Response>> { ... }
}Expand description
Extension for request URLs such that build_and_get exists.
Required Associated Types§
Sourcetype Built: RequestURL + From<Self>
type Built: RequestURL + From<Self>
Built type; PersonRequest for PersonRequestBuilder
Provided Methods§
fn build_and_get( self, ) -> impl Future<Output = Result<<Self::Built as RequestURL>::Response>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.