[][src]Struct nt::EntryMut

pub struct EntryMut<'a> { /* fields omitted */ }

Struct representing an entry in NetworkTables with the given id This struct allows for changes to the entry's flags, and value.

Methods

impl<'a> EntryMut<'a>[src]

pub fn id(&self) -> &u16[src]

Returns the id of self

pub fn value(&self) -> EntryData[src]

Returns the data associated with self

pub fn set_persistent(&mut self, persistent: bool)[src]

Updates the flags of self, setting or unsetting the persistence bit

pub fn set_value(&mut self, new_value: EntryValue)[src]

Updates the value of self. new_value must be the same [EntryType] as that of self.value()

pub fn into_entry(self) -> Entry<'a>[src]

Converts this into an immutable Entry.

pub fn delete(self)[src]

Deletes the entry associated with self self is moved as the data associated with it becomes inaccessible after this operation

Auto Trait Implementations

impl<'a> Send for EntryMut<'a>

impl<'a> Sync for EntryMut<'a>

Blanket Implementations

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

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