pub struct Base64<C = Standard, B = Vec<u8>> { /* private fields */ }
Expand description
A wrapper around B
(usually Vec<u8>
) that (de)serializes from / to a base64 string.
The base64 character set (and miscellaneous other encoding / decoding options) can be customized
through the generic parameter C
.
Implementations§
source§impl<C, B> Base64<C, B>
impl<C, B> Base64<C, B>
source§impl<C, B> Base64<C, B>
impl<C, B> Base64<C, B>
sourcepub fn into_inner(self) -> B
pub fn into_inner(self) -> B
Get the raw bytes held by this Base64
instance.
Trait Implementations§
source§impl<'de, C> Deserialize<'de> for Base64<C>where
C: Base64Config,
impl<'de, C> Deserialize<'de> for Base64<C>where
C: Base64Config,
source§fn deserialize<D>(
deserializer: D,
) -> Result<Base64<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Base64<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<C, B> Ord for Base64<C, B>
impl<C, B> Ord for Base64<C, B>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<C, B> PartialEq for Base64<C, B>
impl<C, B> PartialEq for Base64<C, B>
source§impl<C, B> PartialOrd for Base64<C, B>where
C: PartialOrd,
B: PartialOrd,
impl<C, B> PartialOrd for Base64<C, B>where
C: PartialOrd,
B: PartialOrd,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<C, B> Serialize for Base64<C, B>
impl<C, B> Serialize for Base64<C, B>
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl TryFrom<&Base64PublicKey> for Base64
impl TryFrom<&Base64PublicKey> for Base64
§type Error = Base64DecodeError
type Error = Base64DecodeError
The type returned in the event of a conversion error.
source§fn try_from(
value: &Base64PublicKey,
) -> Result<Base64, <Base64 as TryFrom<&Base64PublicKey>>::Error>
fn try_from( value: &Base64PublicKey, ) -> Result<Base64, <Base64 as TryFrom<&Base64PublicKey>>::Error>
Performs the conversion.
source§impl TryFrom<&OwnedBase64PublicKey> for Base64
impl TryFrom<&OwnedBase64PublicKey> for Base64
§type Error = Base64DecodeError
type Error = Base64DecodeError
The type returned in the event of a conversion error.
source§fn try_from(
value: &OwnedBase64PublicKey,
) -> Result<Base64, <Base64 as TryFrom<&OwnedBase64PublicKey>>::Error>
fn try_from( value: &OwnedBase64PublicKey, ) -> Result<Base64, <Base64 as TryFrom<&OwnedBase64PublicKey>>::Error>
Performs the conversion.
source§impl TryFrom<OwnedBase64PublicKey> for Base64
impl TryFrom<OwnedBase64PublicKey> for Base64
§type Error = Base64DecodeError
type Error = Base64DecodeError
The type returned in the event of a conversion error.
source§fn try_from(
value: OwnedBase64PublicKey,
) -> Result<Base64, <Base64 as TryFrom<OwnedBase64PublicKey>>::Error>
fn try_from( value: OwnedBase64PublicKey, ) -> Result<Base64, <Base64 as TryFrom<OwnedBase64PublicKey>>::Error>
Performs the conversion.
impl<C, B> Eq for Base64<C, B>
impl<C, B> StructuralPartialEq for Base64<C, B>
Auto Trait Implementations§
impl<C, B> Freeze for Base64<C, B>where
B: Freeze,
impl<C, B> RefUnwindSafe for Base64<C, B>where
B: RefUnwindSafe,
impl<C, B> Send for Base64<C, B>where
B: Send,
impl<C, B> Sync for Base64<C, B>where
B: Sync,
impl<C, B> Unpin for Base64<C, B>where
B: Unpin,
impl<C, B> UnwindSafe for Base64<C, B>where
B: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.