Trait dock_core::util::batch_update::ValidateUpdate
source · pub trait ValidateUpdate<Actor, Entity>: GetUpdateKind<Entity> {
// Required method
fn ensure_valid(
&self,
actor: &Actor,
entity: &Entity
) -> Result<(), UpdateError>;
}
Expand description
Validates underlying update, so it can be safely applied to the supplied entity.
Required Methods§
sourcefn ensure_valid(&self, actor: &Actor, entity: &Entity) -> Result<(), UpdateError>
fn ensure_valid(&self, actor: &Actor, entity: &Entity) -> Result<(), UpdateError>
Ensures that the underlying update is valid.