pub enum Base64Variant {
Standard,
UrlSafe,
StandardNoPadding,
UrlSafeNoPadding,
}Variants§
Trait Implementations§
Source§impl Clone for Base64Variant
impl Clone for Base64Variant
Source§fn clone(&self) -> Base64Variant
fn clone(&self) -> Base64Variant
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 Base64Variant
impl Debug for Base64Variant
Source§impl PartialEq for Base64Variant
impl PartialEq for Base64Variant
Source§fn eq(&self, other: &Base64Variant) -> bool
fn eq(&self, other: &Base64Variant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Base64Variant
impl Eq for Base64Variant
impl StructuralPartialEq for Base64Variant
Auto Trait Implementations§
impl Freeze for Base64Variant
impl RefUnwindSafe for Base64Variant
impl Send for Base64Variant
impl Sync for Base64Variant
impl Unpin for Base64Variant
impl UnsafeUnpin for Base64Variant
impl UnwindSafe for Base64Variant
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