#[non_exhaustive]#[repr(u32)]pub enum yaml_scalar_style_t {
YAML_ANY_SCALAR_STYLE = 0,
YAML_PLAIN_SCALAR_STYLE = 1,
YAML_SINGLE_QUOTED_SCALAR_STYLE = 2,
YAML_DOUBLE_QUOTED_SCALAR_STYLE = 3,
YAML_LITERAL_SCALAR_STYLE = 4,
YAML_FOLDED_SCALAR_STYLE = 5,
}
Expand description
Scalar 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_SCALAR_STYLE = 0
Let the emitter choose the style.
YAML_PLAIN_SCALAR_STYLE = 1
The plain scalar style.
YAML_SINGLE_QUOTED_SCALAR_STYLE = 2
The single-quoted scalar style.
YAML_DOUBLE_QUOTED_SCALAR_STYLE = 3
The double-quoted scalar style.
YAML_LITERAL_SCALAR_STYLE = 4
The literal scalar style.
YAML_FOLDED_SCALAR_STYLE = 5
The folded scalar style.
Trait Implementations§
Source§impl Clone for yaml_scalar_style_t
impl Clone for yaml_scalar_style_t
Source§fn clone(&self) -> yaml_scalar_style_t
fn clone(&self) -> yaml_scalar_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_scalar_style_t
impl Debug for yaml_scalar_style_t
Source§impl Hash for yaml_scalar_style_t
impl Hash for yaml_scalar_style_t
Source§impl Ord for yaml_scalar_style_t
impl Ord for yaml_scalar_style_t
Source§fn cmp(&self, other: &yaml_scalar_style_t) -> Ordering
fn cmp(&self, other: &yaml_scalar_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 for yaml_scalar_style_t
impl PartialEq for yaml_scalar_style_t
Source§impl PartialOrd for yaml_scalar_style_t
impl PartialOrd for yaml_scalar_style_t
impl Copy for yaml_scalar_style_t
impl Eq for yaml_scalar_style_t
impl StructuralPartialEq for yaml_scalar_style_t
Auto Trait Implementations§
impl Freeze for yaml_scalar_style_t
impl RefUnwindSafe for yaml_scalar_style_t
impl Send for yaml_scalar_style_t
impl Sync for yaml_scalar_style_t
impl Unpin for yaml_scalar_style_t
impl UnwindSafe for yaml_scalar_style_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