Enum socks_hub::Base64Engine
source · pub enum Base64Engine {
Standard,
StandardNoPad,
UrlSafe,
UrlSafeNoPad,
}Expand description
The base64 encoding engine to use when encoding/decoding data.
Variants§
Standard
Base64 Standard
StandardNoPad
Base64 StandardNoPad
UrlSafe
Base64 UrlSafe
UrlSafeNoPad
Base64 UrlSafeNoPad
Trait Implementations§
source§impl Clone for Base64Engine
impl Clone for Base64Engine
source§fn clone(&self) -> Base64Engine
fn clone(&self) -> Base64Engine
Returns a copy 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 Base64Engine
impl Debug for Base64Engine
impl Copy for Base64Engine
Auto Trait Implementations§
impl Freeze for Base64Engine
impl RefUnwindSafe for Base64Engine
impl Send for Base64Engine
impl Sync for Base64Engine
impl Unpin for Base64Engine
impl UnwindSafe for Base64Engine
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