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

Boolean

Represents a boolean entry value

Double

Represents a double entry value

String

Represents a string entry value

RawData

Represents a raw data entry value

BooleanArray

Represents a boolean array entry value

DoubleArray

Represents a double array entry value

StringArray

Represents a string array entry value

RPCDef

Represents an RPC definition entry value

Methods

impl EntryType[src]

pub fn get_entry(&self, buf: &mut dyn Buf) -> Result<(EntryValue, usize), Error>[src]

Deserializes an EntryValue of type self from the given buf

Trait Implementations

impl PartialEq<EntryType> for EntryType[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for EntryType[src]

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

Performs copy-assignment from source. Read more

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

impl Debug for EntryType[src]

impl ClientMessage for EntryType[src]

impl ServerMessage for EntryType[src]

impl Serialize for EntryType[src]

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

Auto Trait Implementations

impl Send for EntryType

impl Sync for EntryType

Blanket Implementations

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> From for T[src]

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> Any for T where
    T: 'static + ?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> Erased for T

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