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§

source

fn ensure_valid(&self, actor: &Actor, entity: &Entity) -> Result<(), UpdateError>

Ensures that the underlying update is valid.

Implementations on Foreign Types§

source§

impl<A, V> ValidateUpdate<A, V> for ()

source§

impl<A, E, U> ValidateUpdate<A, E> for &Uwhere U: ValidateUpdate<A, E>,

source§

fn ensure_valid(&self, actor: &A, entity: &E) -> Result<(), UpdateError>

Implementors§

source§

impl<A, U, C> ValidateUpdate<A, C> for MultiTargetUpdate<<C::Target as KeyValue>::Key, U>where C: DerefMut, C::Target: KeyValue, A: CanUpdateKeyed<C>, U: ValidateUpdate<A, Option<<C::Target as KeyValue>::Value>>,

source§

impl<A, U, C> ValidateUpdate<A, C> for SingleTargetUpdate<<C::Target as KeyValue>::Key, U>where C: DerefMut, C::Target: KeyValue, A: CanUpdateKeyed<C>, U: ValidateUpdate<A, Option<<C::Target as KeyValue>::Value>>,

source§

impl<A, V> ValidateUpdate<A, Option<V>> for IncOrDecwhere V: Deref<Target = NonZeroU32> + From<NonZeroU32>, A: CanUpdate<V>,

source§

impl<A: CanUpdate<V>, V, U: ValidateUpdate<A, Option<V>>> ValidateUpdate<A, Option<V>> for AddOrRemoveOrModify<V, U>

source§

impl<A: CanUpdate<V>, V, U: ValidateUpdate<A, V>> ValidateUpdate<A, Option<V>> for OnlyExistent<U>

source§

impl<A: CanUpdate<V>, V: PartialEq, U: ValidateUpdate<A, Option<V>>> ValidateUpdate<A, Option<V>> for SetOrAddOrRemoveOrModify<V, U>

source§

impl<A: CanUpdate<V>, V: PartialEq, U: ValidateUpdate<A, V>> ValidateUpdate<A, V> for SetOrModify<V, U>