Enum piston_meta::MetaData [] [src]

pub enum MetaData {
    StartNode(Arc<String>),
    EndNode(Arc<String>),
    Bool(Arc<String>, bool),
    F64(Arc<String>, f64),
    String(Arc<String>, Arc<String>),
}

Represents meta data.

Variants

Starts node.

Ends node.

Sets bool property.

Sets f64 property.

Sets string property.

Trait Implementations

impl PartialEq for MetaData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for MetaData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MetaData
[src]

Formats the value using the given formatter.