Struct Base64

Source
pub struct Base64 { /* private fields */ }
Expand description

Typesafe base64 encoded bytes with an encoding configuration.

Implementations§

Source§

impl Base64

Source

pub fn new<T: ?Sized + AsRef<[u8]>>(input: &T) -> Self

Takes the same types base64::encode. Default encoding is STANDARD

Source

pub fn with_config<T: ?Sized + AsRef<[u8]>>(input: &T, config: Config) -> Self

Same as new, just specify a non-STANDARD Config.

Source

pub fn decode(&self) -> Vec<u8>

Decodes the encoded Base64, and cannot fail - you can only make a Base64 by encoding data.

Source

pub fn config(&self) -> &Config

Reference to the Config used to initalize this Base64.

Source

pub fn encoded(&self) -> &Vec<u8>

Reference to the encoded bytes, useful when you cannot send the whole struct somewhere.

Auto Trait Implementations§

§

impl Freeze for Base64

§

impl RefUnwindSafe for Base64

§

impl Send for Base64

§

impl Sync for Base64

§

impl Unpin for Base64

§

impl UnwindSafe for Base64

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.