pub enum EncConfig {
EncodeLower,
EncodeUpper,
}Expand description
Configuration options for encoding. Just specifies whether or not output should be uppercase or lowercase.
Variants§
EncodeLower
Encode using lower case characters for hex values >= 10
EncodeUpper
Encode using upper case characters for hex values >= 10
Trait Implementations§
Source§impl Ord for EncConfig
impl Ord for EncConfig
Source§impl PartialOrd for EncConfig
impl PartialOrd for EncConfig
impl Copy for EncConfig
impl Eq for EncConfig
impl StructuralPartialEq for EncConfig
Auto Trait Implementations§
impl Freeze for EncConfig
impl RefUnwindSafe for EncConfig
impl Send for EncConfig
impl Sync for EncConfig
impl Unpin for EncConfig
impl UnwindSafe for EncConfig
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