pub enum EncodingFormat {
Hex,
Base64,
Base64Url,
Base64UrlNoPad,
None,
}
Variants§
Trait Implementations§
Source§impl Clone for EncodingFormat
impl Clone for EncodingFormat
Source§fn clone(&self) -> EncodingFormat
fn clone(&self) -> EncodingFormat
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 EncodingFormat
impl Debug for EncodingFormat
Source§impl PartialEq for EncodingFormat
impl PartialEq for EncodingFormat
Source§impl ToString for EncodingFormat
impl ToString for EncodingFormat
impl StructuralPartialEq for EncodingFormat
Auto Trait Implementations§
impl Freeze for EncodingFormat
impl RefUnwindSafe for EncodingFormat
impl Send for EncodingFormat
impl Sync for EncodingFormat
impl Unpin for EncodingFormat
impl UnwindSafe for EncodingFormat
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