#[non_exhaustive]pub enum REncoding {
Native,
Utf8,
Latin1,
Bytes,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for REncoding
impl Eq for REncoding
impl StructuralPartialEq for REncoding
Auto Trait Implementations§
impl Freeze for REncoding
impl RefUnwindSafe for REncoding
impl Send for REncoding
impl Sync for REncoding
impl Unpin for REncoding
impl UnsafeUnpin for REncoding
impl UnwindSafe for REncoding
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