#[non_exhaustive]pub enum StringEncoding {
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§
Source§impl Clone for StringEncoding
impl Clone for StringEncoding
Source§fn clone(&self) -> StringEncoding
fn clone(&self) -> StringEncoding
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 StringEncoding
Source§impl Debug for StringEncoding
impl Debug for StringEncoding
Source§impl Display for StringEncoding
impl Display for StringEncoding
impl Eq for StringEncoding
Source§impl PartialEq for StringEncoding
impl PartialEq for StringEncoding
impl StructuralPartialEq for StringEncoding
Auto Trait Implementations§
impl Freeze for StringEncoding
impl RefUnwindSafe for StringEncoding
impl Send for StringEncoding
impl Sync for StringEncoding
impl Unpin for StringEncoding
impl UnsafeUnpin for StringEncoding
impl UnwindSafe for StringEncoding
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