[][src]Struct openidconnect::LocalizedClaim

pub struct LocalizedClaim<T>(_, _);

A locale-aware claim.

This structure associates one more Option<LanguageTag> locales with the corresponding claims values.

Methods

impl<T> LocalizedClaim<T>[src]

pub fn new() -> Self[src]

Initialize an empty claim.

pub fn contains_key(&self, locale: Option<&LanguageTag>) -> bool[src]

Returns true if the claim contains a value for the specified locale.

pub fn get(&self, locale: Option<&LanguageTag>) -> Option<&T>[src]

Returns the entry for the specified locale or None if there is no such entry.

pub fn iter(&self) -> impl Iterator<Item = (Option<&LanguageTag>, &T)>[src]

Returns an iterator over the locales and claim value entries.

pub fn insert(&mut self, locale: Option<LanguageTag>, value: T) -> Option<T>[src]

Inserts or updates an entry for the specified locale.

Returns the current value associated with the given locale, or None if there is no such entry.

pub fn remove(&mut self, locale: Option<&LanguageTag>) -> Option<T>[src]

Removes an entry for the specified locale.

Returns the current value associated with the given locale, or None if there is no such entry.

Trait Implementations

impl<T> Default for LocalizedClaim<T>[src]

impl<T: Clone> Clone for LocalizedClaim<T>[src]

impl<T: PartialEq> PartialEq<LocalizedClaim<T>> for LocalizedClaim<T>[src]

impl<T> IntoIterator for LocalizedClaim<T> where
    T: 'static, 
[src]

type Item = <LocalizedClaimIterator<T> as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = LocalizedClaimIterator<T>

Which kind of iterator are we turning this into?

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

impl<T: Debug> Debug for LocalizedClaim<T>[src]

impl<T> FromIterator<(Option<LanguageTag>, T)> for LocalizedClaim<T>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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