Enum unsafe_libyaml::yaml_encoding_t
source · #[non_exhaustive]#[repr(u32)]pub enum yaml_encoding_t {
YAML_ANY_ENCODING = 0,
YAML_UTF8_ENCODING = 1,
YAML_UTF16LE_ENCODING = 2,
YAML_UTF16BE_ENCODING = 3,
}
Expand description
The stream encoding.
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.
YAML_ANY_ENCODING = 0
Let the parser choose the encoding.
YAML_UTF8_ENCODING = 1
The default UTF-8 encoding.
YAML_UTF16LE_ENCODING = 2
The UTF-16-LE encoding with BOM.
YAML_UTF16BE_ENCODING = 3
The UTF-16-BE encoding with BOM.
Trait Implementations§
source§impl Clone for yaml_encoding_t
impl Clone for yaml_encoding_t
source§fn clone(&self) -> yaml_encoding_t
fn clone(&self) -> yaml_encoding_t
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 yaml_encoding_t
impl Debug for yaml_encoding_t
source§impl Hash for yaml_encoding_t
impl Hash for yaml_encoding_t
source§impl Ord for yaml_encoding_t
impl Ord for yaml_encoding_t
source§fn cmp(&self, other: &yaml_encoding_t) -> Ordering
fn cmp(&self, other: &yaml_encoding_t) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for yaml_encoding_t
impl PartialEq for yaml_encoding_t
source§fn eq(&self, other: &yaml_encoding_t) -> bool
fn eq(&self, other: &yaml_encoding_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for yaml_encoding_t
impl PartialOrd for yaml_encoding_t
source§fn partial_cmp(&self, other: &yaml_encoding_t) -> Option<Ordering>
fn partial_cmp(&self, other: &yaml_encoding_t) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for yaml_encoding_t
impl Eq for yaml_encoding_t
impl StructuralPartialEq for yaml_encoding_t
Auto Trait Implementations§
impl Freeze for yaml_encoding_t
impl RefUnwindSafe for yaml_encoding_t
impl Send for yaml_encoding_t
impl Sync for yaml_encoding_t
impl Unpin for yaml_encoding_t
impl UnwindSafe for yaml_encoding_t
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