Struct xso::text::Base64

source ·
pub struct Base64;
Available on crate feature base64 only.
Expand description

Text codec transforming text to binary using standard base64.

The Filter type argument can be used to employ additional preprocessing of incoming text data. Most interestingly, passing StripWhitespace will make the implementation ignore any whitespace within the text.

Trait Implementations§

source§

impl<'x> TextCodec<Cow<'x, [u8]>> for Base64

source§

fn decode(&self, s: String) -> Result<Cow<'x, [u8]>, Error>

Decode a string value into the type.
source§

fn encode<'a>( &self, value: &'a Cow<'x, [u8]>, ) -> Result<Option<Cow<'a, str>>, Error>

Encode the type as string value. Read more
source§

fn filtered<F: TextFilter>(self, filter: F) -> Filtered<F, Self, T>
where Self: Sized,

Apply a filter to this codec. Read more
source§

impl<T> TextCodec<Option<T>> for Base64
where Base64: TextCodec<T>,

source§

fn decode(&self, s: String) -> Result<Option<T>, Error>

Decode a string value into the type.
source§

fn encode<'x>( &self, decoded: &'x Option<T>, ) -> Result<Option<Cow<'x, str>>, Error>

Encode the type as string value. Read more
source§

fn filtered<F: TextFilter>(self, filter: F) -> Filtered<F, Self, T>
where Self: Sized,

Apply a filter to this codec. Read more
source§

impl TextCodec<Vec<u8>> for Base64

source§

fn decode(&self, s: String) -> Result<Vec<u8>, Error>

Decode a string value into the type.
source§

fn encode<'x>(&self, value: &'x Vec<u8>) -> Result<Option<Cow<'x, str>>, Error>

Encode the type as string value. Read more
source§

fn filtered<F: TextFilter>(self, filter: F) -> Filtered<F, Self, T>
where Self: Sized,

Apply a filter to this codec. Read more

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>,

§

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>,

§

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.