Enum rustc_serialize::base64::CharacterSet
source · pub enum CharacterSet {
Standard,
UrlSafe,
}
Expand description
Available encoding character sets
Variants§
Standard
The standard character set (uses +
and /
)
UrlSafe
The URL safe character set (uses -
and _
)
Trait Implementations§
source§impl Clone for CharacterSet
impl Clone for CharacterSet
source§fn clone(&self) -> CharacterSet
fn clone(&self) -> CharacterSet
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 CharacterSet
impl Debug for CharacterSet
impl Copy for CharacterSet
Auto Trait Implementations§
impl RefUnwindSafe for CharacterSet
impl Send for CharacterSet
impl Sync for CharacterSet
impl Unpin for CharacterSet
impl UnwindSafe for CharacterSet
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