pub enum NameEncoding {
Compressed,
Uncompressed,
UncompressedLowercase,
}Expand description
Selects how names should be encoded.
Variants§
Compressed
Encode names with compression enabled. The case of the name is unchanged.
Uncompressed
Encode names without compression. The case of the name is unchanged.
UncompressedLowercase
Encode names transformed to lowercase and without compression.
Trait Implementations§
Source§impl Clone for NameEncoding
impl Clone for NameEncoding
Source§fn clone(&self) -> NameEncoding
fn clone(&self) -> NameEncoding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NameEncoding
Auto Trait Implementations§
impl Freeze for NameEncoding
impl RefUnwindSafe for NameEncoding
impl Send for NameEncoding
impl Sync for NameEncoding
impl Unpin for NameEncoding
impl UnsafeUnpin for NameEncoding
impl UnwindSafe for NameEncoding
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