pub struct Base64UrlUnpadded;Implementations§
Source§impl Base64UrlUnpadded
impl Base64UrlUnpadded
pub const ALPHABET: &Alphabet<64>
pub const DECODING_TABLE: &DecodingTable<64>
Trait Implementations§
Source§impl AsRef<Alphabet<64>> for Base64UrlUnpadded
impl AsRef<Alphabet<64>> for Base64UrlUnpadded
Source§impl AsRef<DecodingTable<64>> for Base64UrlUnpadded
impl AsRef<DecodingTable<64>> for Base64UrlUnpadded
Source§fn as_ref(&self) -> &DecodingTable<64>
fn as_ref(&self) -> &DecodingTable<64>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for Base64UrlUnpadded
impl Clone for Base64UrlUnpadded
Source§fn clone(&self) -> Base64UrlUnpadded
fn clone(&self) -> Base64UrlUnpadded
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Base64UrlUnpadded
impl Debug for Base64UrlUnpadded
Source§impl Decoder<64> for Base64UrlUnpadded
impl Decoder<64> for Base64UrlUnpadded
fn decoding_table(&self) -> &DecodingTable<64>
Source§impl Default for Base64UrlUnpadded
impl Default for Base64UrlUnpadded
Source§fn default() -> Base64UrlUnpadded
fn default() -> Base64UrlUnpadded
Returns the “default value” for a type. Read more
Source§impl DynDecoder for Base64UrlUnpadded
impl DynDecoder for Base64UrlUnpadded
fn dyn_decoding_table(&self) -> &DynDecodingTable
fn decoded_len(&self, src: &[u8]) -> Option<usize>
fn decode_into_exact<'a>( &self, src: &[u8], dst: &'a mut [u8], ) -> Result<&'a [u8], DecodeIntoExactError>
fn decode_into<'a>( &self, src: &[u8], dst: &'a mut [u8], ) -> Result<&'a [u8], DecodeIntoError>
fn decode_vec(&self, src: &[u8]) -> Result<Vec<u8>, DecodeVecError>
fn decode_into_vec<'a>( &self, src: &[u8], dst: &'a mut Vec<u8>, ) -> Result<&'a [u8], DecodeVecError>
Source§impl DynEncoder for Base64UrlUnpadded
impl DynEncoder for Base64UrlUnpadded
fn dyn_alphabet(&self) -> &DynAlphabet
fn encoded_len(&self, len: usize) -> Option<usize>
fn encode_into_exact<'a>( &self, src: &[u8], dst: &'a mut [u8], ) -> Result<&'a str, EncodeIntoExactError>
fn encode_into<'a>( &self, src: &[u8], dst: &'a mut [u8], ) -> Result<&'a str, EncodeIntoError>
fn encode_string(&self, src: &[u8]) -> Option<String>
fn encode_into_vec<'a>( &self, src: &[u8], dst: &'a mut Vec<u8>, ) -> Option<&'a str>
fn encode_into_string<'a>( &self, src: &[u8], dst: &'a mut String, ) -> Option<&'a str>
Source§impl Encoder<64> for Base64UrlUnpadded
impl Encoder<64> for Base64UrlUnpadded
fn alphabet(&self) -> &Alphabet<64>
fn encode_array<const LEN2: usize>( &self, src: &[u8], ) -> Result<ArrayString<LEN2>, EncodeIntoExactError>
Source§impl From<Base64UrlUnpadded> for GenericDecoder<Base64UrlUnpadded, Unpadded, 64>
impl From<Base64UrlUnpadded> for GenericDecoder<Base64UrlUnpadded, Unpadded, 64>
Source§fn from(_: Base64UrlUnpadded) -> Self
fn from(_: Base64UrlUnpadded) -> Self
Converts to this type from the input type.
Source§impl From<Base64UrlUnpadded> for GenericEncoder<Base64UrlUnpadded, Base64UrlUnpadded, Unpadded, 64>
impl From<Base64UrlUnpadded> for GenericEncoder<Base64UrlUnpadded, Base64UrlUnpadded, Unpadded, 64>
Source§fn from(_: Base64UrlUnpadded) -> Self
fn from(_: Base64UrlUnpadded) -> Self
Converts to this type from the input type.
Source§impl Hash for Base64UrlUnpadded
impl Hash for Base64UrlUnpadded
Source§impl Ord for Base64UrlUnpadded
impl Ord for Base64UrlUnpadded
Source§fn cmp(&self, other: &Base64UrlUnpadded) -> Ordering
fn cmp(&self, other: &Base64UrlUnpadded) -> Ordering
1.21.0 (const: unstable) · 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 PartialEq for Base64UrlUnpadded
impl PartialEq for Base64UrlUnpadded
Source§fn eq(&self, other: &Base64UrlUnpadded) -> bool
fn eq(&self, other: &Base64UrlUnpadded) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for Base64UrlUnpadded
impl PartialOrd for Base64UrlUnpadded
impl Copy for Base64UrlUnpadded
impl Eq for Base64UrlUnpadded
impl StructuralPartialEq for Base64UrlUnpadded
Auto Trait Implementations§
impl Freeze for Base64UrlUnpadded
impl RefUnwindSafe for Base64UrlUnpadded
impl Send for Base64UrlUnpadded
impl Sync for Base64UrlUnpadded
impl Unpin for Base64UrlUnpadded
impl UnsafeUnpin for Base64UrlUnpadded
impl UnwindSafe for Base64UrlUnpadded
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