Enum quire::ast::Ast [] [src]

pub enum Ast {
    Map(PosTagBTreeMap<String, Ast>),
    Seq(PosTagVec<Ast>),
    Scalar(PosTagScalarKindString),
    Null(PosTagNullKind),
}

Yaml node

Variants

Mapping node

Sequence node

Scalar node (except null)

Null node

Methods

impl Ast
[src]

[src]

[src]

[src]

[src]

A special null value that is used when node inside is errorneous

Trait Implementations

impl Debug for Ast
[src]

[src]

Formats the value using the given formatter.

impl Display for Ast
[src]

[src]

Formats the value using the given formatter. Read more