pub trait Delete<T, Db>{
// Provided method
fn delete(
client: &Db,
params: &DeleteParams,
) -> impl Future<Output = Result<DeleteResult, Error>> { ... }
}
Provided Methods§
fn delete( client: &Db, params: &DeleteParams, ) -> impl Future<Output = Result<DeleteResult, Error>>
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.