serde_yml::de

Enum Event

Source
pub enum Event<'de> {
    Alias(usize),
    Scalar(Scalar<'de>),
    SequenceStart(SequenceStart),
    SequenceEnd,
    MappingStart(MappingStart),
    MappingEnd,
    Void,
}
Expand description

Represents the different events that can occur during YAML parsing.

Variants§

§

Alias(usize)

Represents an alias event, which refers to a previously defined anchor. The usize value represents the index of the aliased event.

§

Scalar(Scalar<'de>)

Represents a scalar event, which contains a scalar value. The Scalar type holds the scalar value and its associated properties.

§

SequenceStart(SequenceStart)

Represents the start of a sequence event. The SequenceStart type holds the properties of the sequence, such as its anchor and tag.

§

SequenceEnd

Represents the end of a sequence event.

§

MappingStart(MappingStart)

Represents the start of a mapping event. The MappingStart type holds the properties of the mapping, such as its anchor and tag.

§

MappingEnd

Represents the end of a mapping event.

§

Void

Represents a void event, which is an empty event. This event is used when there are no other events to be parsed.

Trait Implementations§

Source§

impl<'de> Debug for Event<'de>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'de> Freeze for Event<'de>

§

impl<'de> RefUnwindSafe for Event<'de>

§

impl<'de> Send for Event<'de>

§

impl<'de> Sync for Event<'de>

§

impl<'de> Unpin for Event<'de>

§

impl<'de> UnwindSafe for Event<'de>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.