Trait Delete

Source
pub trait Delete<T, Db>
where T: RestModel, Db: DbClient<T>,
{ // Provided method fn delete( client: &Db, params: &DeleteParams, ) -> impl Future<Output = Result<DeleteResult, Error>> { ... } }

Provided Methods§

Source

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.

Implementors§