pub trait UploadOperationExt<This>where
This: UploadAlg,{
// Required method
fn shop_upload(&self, upload: Upload) -> impl Future<Output = String>;
}Expand description
Derives the one operation the parts surface exposes.
Required Methods§
Sourcefn shop_upload(&self, upload: Upload) -> impl Future<Output = String>
fn shop_upload(&self, upload: Upload) -> impl Future<Output = String>
Returns what the domain makes of a body sent as parts.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<This> UploadOperationExt<This> for Thiswhere
This: UploadAlg,
Derives the one operation the parts surface exposes.