#[non_exhaustive]pub enum B32CharSet {
Standard,
}Expand description
Determines which characters are used for the Base32 encoding
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Standard
Uses these characters:
ABCDEFGHIJKLMNOPQRSTUVWXYZ234567Trait Implementations§
Source§impl Clone for B32CharSet
impl Clone for B32CharSet
Source§fn clone(&self) -> B32CharSet
fn clone(&self) -> B32CharSet
Returns a duplicate of the value. Read more
1.0.0 · 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 B32CharSet
impl Debug for B32CharSet
Source§impl PartialEq for B32CharSet
impl PartialEq for B32CharSet
impl Copy for B32CharSet
impl Eq for B32CharSet
impl StructuralPartialEq for B32CharSet
Auto Trait Implementations§
impl Freeze for B32CharSet
impl RefUnwindSafe for B32CharSet
impl Send for B32CharSet
impl Sync for B32CharSet
impl Unpin for B32CharSet
impl UnwindSafe for B32CharSet
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