#[repr(u32)]#[non_exhaustive]pub enum yaml_event_type_t {
    YAML_NO_EVENT,
    YAML_STREAM_START_EVENT,
    YAML_STREAM_END_EVENT,
    YAML_DOCUMENT_START_EVENT,
    YAML_DOCUMENT_END_EVENT,
    YAML_ALIAS_EVENT,
    YAML_SCALAR_EVENT,
    YAML_SEQUENCE_START_EVENT,
    YAML_SEQUENCE_END_EVENT,
    YAML_MAPPING_START_EVENT,
    YAML_MAPPING_END_EVENT,
}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
An empty event.
YAML_STREAM_START_EVENT
A STREAM-START event.
YAML_STREAM_END_EVENT
A STREAM-END event.
YAML_DOCUMENT_START_EVENT
A DOCUMENT-START event.
YAML_DOCUMENT_END_EVENT
A DOCUMENT-END event.
YAML_ALIAS_EVENT
An ALIAS event.
YAML_SCALAR_EVENT
A SCALAR event.
YAML_SEQUENCE_START_EVENT
A SEQUENCE-START event.
YAML_SEQUENCE_END_EVENT
A SEQUENCE-END event.
YAML_MAPPING_START_EVENT
A MAPPING-START event.
YAML_MAPPING_END_EVENT
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<yaml_event_type_t> for yaml_event_type_t
 
impl PartialEq<yaml_event_type_t> for yaml_event_type_t
source§fn eq(&self, other: &yaml_event_type_t) -> bool
 
fn eq(&self, other: &yaml_event_type_t) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<yaml_event_type_t> for yaml_event_type_t
 
impl PartialOrd<yaml_event_type_t> for yaml_event_type_t
source§fn partial_cmp(&self, other: &yaml_event_type_t) -> Option<Ordering>
 
fn partial_cmp(&self, other: &yaml_event_type_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_event_type_t
impl Eq for yaml_event_type_t
impl StructuralEq for yaml_event_type_t
impl StructuralPartialEq for yaml_event_type_t
Auto Trait Implementations§
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