Type Alias yaml_peg::YamlRc

source ·
pub type YamlRc = Yaml<RcRepr>;
Expand description

A YAML data with alloc::rc::Rc holder.

Aliased Type§

enum YamlRc {
    Null,
    Bool(bool),
    Int(String),
    Float(String),
    Str(String),
    Seq(Vec<Node<RcRepr>>),
    Map(LinkedHashMap<Node<RcRepr>, Node<RcRepr>>),
    Alias(String),
}

Variants§

§

Null

Null

§

Bool(bool)

Boolean

§

Int(String)

Integer

§

Float(String)

Float

§

Str(String)

String

§

Seq(Vec<Node<RcRepr>>)

Sequence

§

Map(LinkedHashMap<Node<RcRepr>, Node<RcRepr>>)

Map

§

Alias(String)

Alias (anchor insertion)