[][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

Boolean(bool)

An entry value containing a single boolean

Double(f64)

An entry value containing a single double

String(String)

An entry value containing a single string

RawData(Vec<u8>)

An entry value containing raw data

BooleanArray(Vec<bool>)

An entry value containing a boolean array

DoubleArray(Vec<f64>)

An entry value containing a double array

StringArray(Vec<String>)

An entry value containing a string array

RPCDef(RPCDefinitionData)

An entry value containing definition data for a RPC

Methods

impl EntryValue[src]

pub fn entry_type(&self) -> EntryType[src]

Returns the EntryType corresponding to the variant of [self]

Trait Implementations

impl PartialEq<EntryValue> for EntryValue[src]

impl Clone for EntryValue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EntryValue[src]

impl ClientMessage for EntryValue[src]

impl Serialize for EntryValue[src]

impl<'de> Deserialize<'de> 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]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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]