pub trait Repr: Sized {
    type Rc: Deref<Target = Yaml<Self>> + Hash + Eq + Clone + Debug;

    fn new_rc(yaml: Yaml<Self>) -> Self::Rc;
}
Expand description

The generic representation holder for Yaml.

See the implementor list for the choose.

Required Associated Types

Type of the representation, e.g., the reference counter type.

Required Methods

The creation function of this type.

Implementors