TokenData

Enum TokenData 

Source
pub enum TokenData {
Show 21 variants StreamStart { encoding: Encoding, }, StreamEnd, VersionDirective { major: i32, minor: i32, }, TagDirective { handle: String, prefix: String, }, DocumentStart, DocumentEnd, BlockSequenceStart, BlockMappingStart, BlockEnd, FlowSequenceStart, FlowSequenceEnd, FlowMappingStart, FlowMappingEnd, BlockEntry, FlowEntry, Key, Value, Alias { value: String, }, Anchor { value: String, }, Tag { handle: String, suffix: String, }, Scalar { value: String, style: ScalarStyle, },
}

Variants§

§

StreamStart

A STREAM-START token.

Fields

§encoding: Encoding

The stream encoding.

§

StreamEnd

A STREAM-END token.

§

VersionDirective

A VERSION-DIRECTIVE token.

Fields

§major: i32

The major version number.

§minor: i32

The minor version number.

§

TagDirective

A TAG-DIRECTIVE token.

Fields

§handle: String

The tag handle.

§prefix: String

The tag prefix.

§

DocumentStart

A DOCUMENT-START token.

§

DocumentEnd

A DOCUMENT-END token.

§

BlockSequenceStart

A BLOCK-SEQUENCE-START token.

§

BlockMappingStart

A BLOCK-MAPPING-START token.

§

BlockEnd

A BLOCK-END token.

§

FlowSequenceStart

A FLOW-SEQUENCE-START token.

§

FlowSequenceEnd

A FLOW-SEQUENCE-END token.

§

FlowMappingStart

A FLOW-MAPPING-START token.

§

FlowMappingEnd

A FLOW-MAPPING-END token.

§

BlockEntry

A BLOCK-ENTRY token.

§

FlowEntry

A FLOW-ENTRY token.

§

Key

A KEY token.

§

Value

A VALUE token.

§

Alias

An ALIAS token.

Fields

§value: String

The alias value.

§

Anchor

An ANCHOR token.

Fields

§value: String

The anchor value.

§

Tag

A TAG token.

Fields

§handle: String

The tag handle.

§suffix: String

The tag suffix.

§

Scalar

A SCALAR token.

Fields

§value: String

The scalar value.

§style: ScalarStyle

The scalar style.

Trait Implementations§

Source§

impl Debug for TokenData

Source§

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

Formats the value using the given formatter. Read more
Source§

impl PartialEq for TokenData

Source§

fn eq(&self, other: &TokenData) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for TokenData

Auto Trait Implementations§

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.