Enum wit_component::StringEncoding 
source · pub enum StringEncoding {
    UTF8,
    UTF16,
    CompactUTF16,
}Expand description
Supported string encoding formats.
Variants§
UTF8
Strings are encoded with UTF-8.
UTF16
Strings are encoded with UTF-16.
CompactUTF16
Strings are encoded with compact UTF-16 (i.e. Latin1+UTF-16).
Trait Implementations§
source§impl Clone for StringEncoding
 
impl Clone for StringEncoding
source§fn clone(&self) -> StringEncoding
 
fn clone(&self) -> StringEncoding
Returns a copy 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 StringEncoding
 
impl Debug for StringEncoding
source§impl Default for StringEncoding
 
impl Default for StringEncoding
source§fn default() -> StringEncoding
 
fn default() -> StringEncoding
Returns the “default value” for a type. Read more
source§impl Display for StringEncoding
 
impl Display for StringEncoding
source§impl From<StringEncoding> for CanonicalOption
 
impl From<StringEncoding> for CanonicalOption
source§fn from(e: StringEncoding) -> CanonicalOption
 
fn from(e: StringEncoding) -> CanonicalOption
Converts to this type from the input type.
source§impl FromStr for StringEncoding
 
impl FromStr for StringEncoding
source§impl Hash for StringEncoding
 
impl Hash for StringEncoding
source§impl PartialEq for StringEncoding
 
impl PartialEq for StringEncoding
source§fn eq(&self, other: &StringEncoding) -> bool
 
fn eq(&self, other: &StringEncoding) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for StringEncoding
impl Eq for StringEncoding
impl StructuralEq for StringEncoding
impl StructuralPartialEq for StringEncoding
Auto Trait Implementations§
impl RefUnwindSafe for StringEncoding
impl Send for StringEncoding
impl Sync for StringEncoding
impl Unpin 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
§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.