Struct nt::EntryMut[][src]

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]

Returns the id of self

Returns the data associated with self

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

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

Converts this into an immutable Entry.

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>