[][src]Struct biscuit::Base64Url

pub struct Base64Url(_);

A newtype wrapper around a string to indicate it's base64 URL encoded

Implementations

impl Base64Url[src]

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

Unwrap the embedded string, consuming self in the process

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

"Borrow" the string

Trait Implementations

impl AsRef<[u8]> for Base64Url[src]

impl Borrow<str> for Base64Url[src]

impl Clone for Base64Url[src]

impl CompactPart for Base64Url[src]

fn from_bytes(bytes: &[u8]) -> Result<Self, Error>[src]

Convert a sequence of bytes into Self

impl Debug for Base64Url[src]

impl Deref for Base64Url[src]

type Target = str

The resulting type after dereferencing.

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

impl Eq for Base64Url[src]

impl FromStr for Base64Url[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

This never fails

impl PartialEq<Base64Url> for Base64Url[src]

impl Serialize for Base64Url[src]

impl StructuralEq for Base64Url[src]

impl StructuralPartialEq for Base64Url[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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, 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.