Enum prost_types::value::Kind[][src]

pub enum Kind {
    NullValue(i32),
    NumberValue(f64),
    StringValue(String),
    BoolValue(bool),
    StructValue(Struct),
    ListValue(ListValue),
}

The kind of value.

Variants

Represents a null value.

Represents a double value.

Represents a string value.

Represents a boolean value.

Represents a structured value.

Represents a repeated Value.

Methods

impl Kind
[src]

Trait Implementations

impl Debug for Kind
[src]

Formats the value using the given formatter. Read more

impl Clone for Kind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Kind
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Kind

impl Sync for Kind