Struct WriteManyTable

Source
pub struct WriteManyTable<T>(/* private fields */);
Expand description

A table which allows values to be overwritten. Useful for your language’s local variables, etc.

use stack_vm::{WriteManyTable, Table};
let mut table: WriteManyTable<usize> = WriteManyTable::new();
assert!(table.is_empty());

table.insert("example", 13);
assert!(!table.is_empty());

assert!(table.contains_key("example"));

let value = *table.get("example").unwrap();
assert_eq!(value, 13);

table.insert("example", 14);
assert!(table.contains_key("example"));

let value = *table.get("example").unwrap();
assert_eq!(value, 14);

Implementations§

Source§

impl<T> WriteManyTable<T>

Source

pub fn new() -> WriteManyTable<T>

Return a new, empty WriteManyTable.

Trait Implementations§

Source§

impl<T: Debug> Debug for WriteManyTable<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default> Default for WriteManyTable<T>

Source§

fn default() -> WriteManyTable<T>

Returns the “default value” for a type. Read more
Source§

impl<T> Table for WriteManyTable<T>

Source§

type Item = T

The type for items stored and retrieved from the table.
Source§

fn insert(&mut self, name: &str, value: T)

Insert a value into the table using a string key.
Source§

fn is_empty(&self) -> bool

Is the table empty or not?
Source§

fn contains_key(&self, name: &str) -> bool

Does the table contain the key or not?
Source§

fn get(&self, name: &str) -> Option<&T>

Retrieve a reference to a value stored in the table by key.

Auto Trait Implementations§

§

impl<T> Freeze for WriteManyTable<T>

§

impl<T> RefUnwindSafe for WriteManyTable<T>
where T: RefUnwindSafe,

§

impl<T> Send for WriteManyTable<T>
where T: Send,

§

impl<T> Sync for WriteManyTable<T>
where T: Sync,

§

impl<T> Unpin for WriteManyTable<T>
where T: Unpin,

§

impl<T> UnwindSafe for WriteManyTable<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.