pub trait Updatable<V>:
Sized
+ EntityTypeRef
+ Sized
+ Sync
+ Send
+ for<'de> Deserialize<'de>{
// Provided method
fn update<B>(
&self,
bmc: &B,
update: &V,
) -> impl Future<Output = Result<ModificationResponse<Self>, <B as Bmc>::Error>> + Send
where B: Bmc { ... }
}Expand description
This trait is assigned to entity types that are marked as updatable in the CSDL specification.
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.