Struct WriteOnceTable

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

A table which does not allow values to be overwritten. Useful for your languages constants, etc.

use stack_vm::{WriteOnceTable, Table};
let mut table: WriteOnceTable<usize> = WriteOnceTable::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);
use stack_vm::{WriteOnceTable, Table};
let mut table: WriteOnceTable<usize> = WriteOnceTable::new();
table.insert("example", 13);
table.insert("example", 14);

Implementations§

Source§

impl<T> WriteOnceTable<T>

Source

pub fn new() -> WriteOnceTable<T>

Return a new, empty WriteOnceTable.

Source

pub fn keys(&self) -> Vec<String>

Trait Implementations§

Source§

impl<T: Debug> Debug for WriteOnceTable<T>

Source§

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

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

impl<T: Default> Default for WriteOnceTable<T>

Source§

fn default() -> WriteOnceTable<T>

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

impl<T> Table for WriteOnceTable<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 WriteOnceTable<T>

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for WriteOnceTable<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.