[][src]Struct aliri_jose::jwt::Issuer

#[repr(transparent)]pub struct Issuer(_);

An issuer of JWTs

Implementations

impl Issuer[src]

pub fn new<T: Into<String>>(raw: T) -> Self[src]

Strongly types the given String.

pub fn into_inner(self) -> String[src]

Unwraps the underlying value.

pub fn as_str(&self) -> &str[src]

Provides access to the underlying value as a string slice.

Methods from Deref<Target = IssuerRef>

pub const fn as_str(&self) -> &str[src]

Provides access to the underlying value as a string slice.

Trait Implementations

impl AsRef<IssuerRef> for Issuer[src]

impl Borrow<IssuerRef> for Issuer[src]

impl Clone for Issuer[src]

impl Debug for Issuer[src]

impl Deref for Issuer[src]

type Target = IssuerRef

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for Issuer[src]

impl<'a> Display for Issuer[src]

impl Eq for Issuer[src]

impl<'_> From<&'_ IssuerRef> for Issuer[src]

impl<'_> From<&'_ str> for Issuer[src]

impl From<Issuer> for String[src]

impl From<String> for Issuer[src]

impl Hash for Issuer[src]

impl PartialEq<Issuer> for Issuer[src]

impl PartialEq<Issuer> for IssuerRef[src]

impl PartialEq<IssuerRef> for Issuer[src]

impl Serialize for Issuer[src]

impl StructuralEq for Issuer[src]

impl StructuralPartialEq for Issuer[src]

Auto Trait Implementations

impl RefUnwindSafe for Issuer

impl Send for Issuer

impl Sync for Issuer

impl Unpin for Issuer

impl UnwindSafe for Issuer

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, 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> ToString for T where
    T: Display + ?Sized
[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.