pub enum ScimAttributeEffectiveAccess {
Grant,
Denied,
Allow(BTreeSet<Attribute>),
}
Variants§
Grant
All attributes on the entry have this permission granted
Denied
All attributes on the entry have this permission denied
Allow(BTreeSet<Attribute>)
The following attributes on the entry have this permission granted
Implementations§
Trait Implementations§
Source§impl Clone for ScimAttributeEffectiveAccess
impl Clone for ScimAttributeEffectiveAccess
Source§fn clone(&self) -> ScimAttributeEffectiveAccess
fn clone(&self) -> ScimAttributeEffectiveAccess
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ScimAttributeEffectiveAccess
impl Debug for ScimAttributeEffectiveAccess
Auto Trait Implementations§
impl Freeze for ScimAttributeEffectiveAccess
impl RefUnwindSafe for ScimAttributeEffectiveAccess
impl Send for ScimAttributeEffectiveAccess
impl Sync for ScimAttributeEffectiveAccess
impl Unpin for ScimAttributeEffectiveAccess
impl UnwindSafe for ScimAttributeEffectiveAccess
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more