Enum nt::EntryType[][src]

pub enum EntryType {
    Boolean,
    Double,
    String,
    RawData,
    BooleanArray,
    DoubleArray,
    StringArray,
    RPCDef,
}

Corresponds to the type tag that NetworkTables presents prior to the corresponding EntryValue

Variants

Represents a boolean entry value

Represents a double entry value

Represents a string entry value

Represents a raw data entry value

Represents a boolean array entry value

Represents a double array entry value

Represents a string array entry value

Represents an RPC definition entry value

Methods

impl EntryType
[src]

Deserializes an EntryValue of type self from the given buf

Trait Implementations

impl Debug for EntryType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for EntryType
[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 EntryType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl ClientMessage for EntryType
[src]

Encodes Self into the given buf

impl ServerMessage for EntryType
[src]

Attempts to decode Self from the given buf Returns Some if the given buf was a valid NT packet Returns None if the given buf was malformed, or otherwise invalid Read more

impl<T> From<T> for EntryType where
    T: AsRef<str>, 
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for EntryType

impl Sync for EntryType