#[repr(u32)]
#[non_exhaustive]
pub enum yaml_mapping_style_t {
YAML_ANY_MAPPING_STYLE,
YAML_BLOCK_MAPPING_STYLE,
YAML_FLOW_MAPPING_STYLE,
}
Expand description
Mapping styles.
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_MAPPING_STYLE
Let the emitter choose the style.
YAML_BLOCK_MAPPING_STYLE
The block mapping style.
YAML_FLOW_MAPPING_STYLE
The flow mapping style.
Trait Implementations§
source§impl Clone for yaml_mapping_style_t
impl Clone for yaml_mapping_style_t
source§fn clone(&self) -> yaml_mapping_style_t
fn clone(&self) -> yaml_mapping_style_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_mapping_style_t
impl Debug for yaml_mapping_style_t
source§impl Hash for yaml_mapping_style_t
impl Hash for yaml_mapping_style_t
source§impl Ord for yaml_mapping_style_t
impl Ord for yaml_mapping_style_t
source§fn cmp(&self, other: &yaml_mapping_style_t) -> Ordering
fn cmp(&self, other: &yaml_mapping_style_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<yaml_mapping_style_t> for yaml_mapping_style_t
impl PartialEq<yaml_mapping_style_t> for yaml_mapping_style_t
source§fn eq(&self, other: &yaml_mapping_style_t) -> bool
fn eq(&self, other: &yaml_mapping_style_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<yaml_mapping_style_t> for yaml_mapping_style_t
impl PartialOrd<yaml_mapping_style_t> for yaml_mapping_style_t
source§fn partial_cmp(&self, other: &yaml_mapping_style_t) -> Option<Ordering>
fn partial_cmp(&self, other: &yaml_mapping_style_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 more