pub trait Updatable<V: Sync + Send + Serialize>: EntityTypeRef + Sized{
// Provided method
fn update<B: Bmc>(
&self,
bmc: &B,
update: &V,
) -> impl Future<Output = Result<ModificationResponse<Self>, B::Error>> + Send { ... }
}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.