#[non_exhaustive]#[repr(u32)]pub enum yaml_event_type_t {
YAML_NO_EVENT = 0,
YAML_STREAM_START_EVENT = 1,
YAML_STREAM_END_EVENT = 2,
YAML_DOCUMENT_START_EVENT = 3,
YAML_DOCUMENT_END_EVENT = 4,
YAML_ALIAS_EVENT = 5,
YAML_SCALAR_EVENT = 6,
YAML_SEQUENCE_START_EVENT = 7,
YAML_SEQUENCE_END_EVENT = 8,
YAML_MAPPING_START_EVENT = 9,
YAML_MAPPING_END_EVENT = 10,
}
Expand description
Event types.
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_NO_EVENT = 0
An empty event.
YAML_STREAM_START_EVENT = 1
A STREAM-START event.
YAML_STREAM_END_EVENT = 2
A STREAM-END event.
YAML_DOCUMENT_START_EVENT = 3
A DOCUMENT-START event.
YAML_DOCUMENT_END_EVENT = 4
A DOCUMENT-END event.
YAML_ALIAS_EVENT = 5
An ALIAS event.
YAML_SCALAR_EVENT = 6
A SCALAR event.
YAML_SEQUENCE_START_EVENT = 7
A SEQUENCE-START event.
YAML_SEQUENCE_END_EVENT = 8
A SEQUENCE-END event.
YAML_MAPPING_START_EVENT = 9
A MAPPING-START event.
YAML_MAPPING_END_EVENT = 10
A MAPPING-END event.
Trait Implementations§
Source§impl Clone for yaml_event_type_t
impl Clone for yaml_event_type_t
Source§fn clone(&self) -> yaml_event_type_t
fn clone(&self) -> yaml_event_type_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_event_type_t
impl Debug for yaml_event_type_t
Source§impl Hash for yaml_event_type_t
impl Hash for yaml_event_type_t
Source§impl Ord for yaml_event_type_t
impl Ord for yaml_event_type_t
Source§fn cmp(&self, other: &yaml_event_type_t) -> Ordering
fn cmp(&self, other: &yaml_event_type_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_event_type_t
impl PartialEq for yaml_event_type_t
Source§impl PartialOrd for yaml_event_type_t
impl PartialOrd for yaml_event_type_t
impl Copy for yaml_event_type_t
impl Eq for yaml_event_type_t
impl StructuralPartialEq for yaml_event_type_t
Auto Trait Implementations§
impl Freeze for yaml_event_type_t
impl RefUnwindSafe for yaml_event_type_t
impl Send for yaml_event_type_t
impl Sync for yaml_event_type_t
impl Unpin for yaml_event_type_t
impl UnwindSafe for yaml_event_type_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