pub enum Base64Encoder {
Standard {
bounceable: bool,
production: bool,
},
UrlSafe {
bounceable: bool,
production: bool,
},
}Expand description
An encoder that converts the Address structure to a Base64 string representation.
Variants§
Trait Implementations§
Source§impl Clone for Base64Encoder
impl Clone for Base64Encoder
Source§fn clone(&self) -> Base64Encoder
fn clone(&self) -> Base64Encoder
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 Base64Encoder
impl Debug for Base64Encoder
impl Copy for Base64Encoder
Auto Trait Implementations§
impl Freeze for Base64Encoder
impl RefUnwindSafe for Base64Encoder
impl Send for Base64Encoder
impl Sync for Base64Encoder
impl Unpin for Base64Encoder
impl UnwindSafe for Base64Encoder
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