pub trait DeleteWithRequest<TReq>{
// Provided method
fn delete(&self, req: &TReq) -> impl Future<Output = Result<()>> + Send { ... }
}Expand description
Trait for resource types that can be deleted with a more complex request.
Provided Methods§
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.