Enum reproto_core::RpValue [] [src]

pub enum RpValue {
    String(String),
    Number(RpNumber),
    Identifier(String),
    Array(Vec<Loc<RpValue>>),
}

Variants

Methods

impl RpValue
[src]

[src]

[src]

[src]

[src]

Is this value a string.

[src]

Trait Implementations

impl Debug for RpValue
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RpValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for RpValue
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for RpValue

impl Sync for RpValue