Trait Patch

Source
pub trait Patch<T, Db>
where T: RestModel, Db: DbClient<T>,
{ // Provided method fn patch( client: &Db, params: &PatchParams, ) -> impl Future<Output = Result<UpdateResult, Error>> { ... } }

Provided Methods§

Source

fn patch( client: &Db, params: &PatchParams, ) -> impl Future<Output = Result<UpdateResult, 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§