[][src]Enum nt::EntryValue

pub enum EntryValue {
    Boolean(bool),
    Double(f64),
    String(String),
    RawData(Vec<u8>),
    BooleanArray(Vec<bool>),
    DoubleArray(Vec<f64>),
    StringArray(Vec<String>),
    RPCDef(RPCDefinitionData),
}

Enum representing the different values that NetworkTables supports

Variants

An entry value containing a single boolean

An entry value containing a single double

An entry value containing a single string

An entry value containing raw data

An entry value containing a boolean array

An entry value containing a double array

An entry value containing a string array

An entry value containing definition data for a RPC

Methods

impl EntryValue
[src]

Returns the EntryType corresponding to the variant of [self]

Trait Implementations

impl Clone for EntryValue
[src]

Performs copy-assignment from source. Read more

impl PartialEq<EntryValue> for EntryValue
[src]

impl Debug for EntryValue
[src]

impl ClientMessage for EntryValue
[src]

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

impl Serialize for EntryValue
[src]

Auto Trait Implementations

impl Send for EntryValue

impl Sync for EntryValue

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]