pub enum IdSchemeEncoding {
Standard,
Base64,
Base64UrlNoPad,
Base58,
}Expand description
Pick your base-encoding:
Variants§
Trait Implementations§
Source§impl Clone for IdSchemeEncoding
impl Clone for IdSchemeEncoding
Source§fn clone(&self) -> IdSchemeEncoding
fn clone(&self) -> IdSchemeEncoding
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 moreimpl Copy for IdSchemeEncoding
Source§impl Debug for IdSchemeEncoding
impl Debug for IdSchemeEncoding
impl Eq for IdSchemeEncoding
Source§impl Hash for IdSchemeEncoding
impl Hash for IdSchemeEncoding
Source§impl PartialEq for IdSchemeEncoding
impl PartialEq for IdSchemeEncoding
Source§fn eq(&self, other: &IdSchemeEncoding) -> bool
fn eq(&self, other: &IdSchemeEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IdSchemeEncoding
Auto Trait Implementations§
impl Freeze for IdSchemeEncoding
impl RefUnwindSafe for IdSchemeEncoding
impl Send for IdSchemeEncoding
impl Sync for IdSchemeEncoding
impl Unpin for IdSchemeEncoding
impl UnsafeUnpin for IdSchemeEncoding
impl UnwindSafe for IdSchemeEncoding
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