pub trait CanUpdateAndCanUpdateKeyed<Entity>: CanUpdateKeyed<Entity> + CanUpdate<Entity>where
    Entity: Deref,
    Entity::Target: KeyValue,{ }
Expand description

Checks whether an actor can either update a whole entity or some of its keys.

Implementors§

source§

impl<Entity, T: CanUpdateKeyed<Entity> + CanUpdate<Entity>> CanUpdateAndCanUpdateKeyed<Entity> for Twhere Entity: Deref, Entity::Target: KeyValue,