[][src]Struct qonfucius_sso_utility::scope::Scope

pub struct Scope<T: Clone + Debug + Hash + Eq>(pub HashMap<T, Vec<ScopeAcl>>);

Contains the full hash of various scoped resources and matching Acl.

Contains a few utility methods for scope check

Implementations

impl<T: Clone + Debug + Hash + Eq> Scope<T>[src]

pub fn authorized_acl(&self, resource: T, acl: ScopeAcl) -> bool[src]

Checks if the current Scope instance authorizes acl for resource

Trait Implementations

impl<T: Clone + Debug + Hash + Eq> Clone for Scope<T>[src]

impl<T: Debug + Clone + Hash + Eq> Debug for Scope<T>[src]

impl<'de, T: Clone + Debug + Hash + Eq> Deserialize<'de> for Scope<T> where
    T: Deserialize<'de>, 
[src]

impl<T: Clone + Debug + Hash + Eq> From<Vec<ParsedScope<T>, Global>> for Scope<T>[src]

impl<T: Clone + Debug + Hash + Eq> Serialize for Scope<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Scope<T> where
    T: RefUnwindSafe

impl<T> Send for Scope<T> where
    T: Send

impl<T> Sync for Scope<T> where
    T: Sync

impl<T> Unpin for Scope<T> where
    T: Unpin

impl<T> UnwindSafe for Scope<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.