[][src]Enum nt::EntryType

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

Performs copy-assignment from source. Read more

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

impl PartialEq<EntryType> for EntryType
[src]

This method tests for !=.

impl Debug for EntryType
[src]

impl ClientMessage for EntryType
[src]

impl ServerMessage for EntryType
[src]

impl<'de> Deserialize<'de> for EntryType
[src]

impl Serialize for EntryType
[src]

Auto Trait Implementations

impl Send for EntryType

impl Sync for EntryType

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]