pub struct EnumTable<K: Enumable, V, const N: usize> { /* private fields */ }
Expand description
A table that associates each variant of an enumeration with a value.
EnumTable
is a generic struct that uses an enumeration as keys and stores
associated values. It provides constant-time access to the values based on
the enumeration variant. This is particularly useful when you want to map
enum variants to specific values without the overhead of a HashMap
.
§Type Parameters
K
: The enumeration type that implements theEnumable
trait. This trait ensures that the enum provides a static array of its variants and a count of these variants.V
: The type of values to be associated with each enum variant.N
: The number of variants in the enum, which should match the length of the static array of variants provided by theEnumable
trait.
§Note
The new
method allows for the creation of an EnumTable
in const
contexts,
but it does not perform compile-time checks. For enhanced compile-time safety
and convenience, it is advisable to use the crate::et
macro or
crate::builder::EnumTableBuilder
, which provide these checks.
§Examples
use enum_table::{EnumTable, Enumable};
#[derive(Enumable)]
enum Color {
Red,
Green,
Blue,
}
// Create an EnumTable using the new_with_fn method
let table = EnumTable::<Color, &'static str, { Color::COUNT }>::new_with_fn(|color| match color {
Color::Red => "Red",
Color::Green => "Green",
Color::Blue => "Blue",
});
// Access values associated with enum variants
assert_eq!(table.get(&Color::Red), &"Red");
assert_eq!(table.get(&Color::Green), &"Green");
assert_eq!(table.get(&Color::Blue), &"Blue");
Implementations§
Source§impl<K: Enumable, V, const N: usize> EnumTable<K, V, N>
impl<K: Enumable, V, const N: usize> EnumTable<K, V, N>
Sourcepub const fn new(table: [(usize, V); N]) -> Self
pub const fn new(table: [(usize, V); N]) -> Self
Creates a new EnumTable
with the given table of discriminants and values.
Typically, you would use the crate::et
macro or the crate::builder::EnumTableBuilder
instead.
§Arguments
table
- An array of tuples where each tuple contains a discriminant of an enumeration variant and its associated value.
Sourcepub fn new_with_fn(f: impl FnMut(&K) -> V) -> Self
pub fn new_with_fn(f: impl FnMut(&K) -> V) -> Self
Create a new EnumTable with a function that takes a variant and returns a value.
If you want to define it in const, use crate::et
macro
Creates a new EnumTable
using a function to generate values for each variant.
§Arguments
f
- A function that takes a reference to an enumeration variant and returns a value to be associated with that variant.
Sourcepub fn try_new_with_fn<E>(
f: impl FnMut(&K) -> Result<V, E>,
) -> Result<Self, (&'static K, E)>
pub fn try_new_with_fn<E>( f: impl FnMut(&K) -> Result<V, E>, ) -> Result<Self, (&'static K, E)>
Creates a new EnumTable
using a function that returns a Result
for each variant.
This method applies the provided closure to each variant of the enum. If the closure
returns Ok(value)
for all variants, an EnumTable
is constructed and returned as Ok(Self)
.
If the closure returns Err(e)
for any variant, the construction is aborted and
Err((variant, e))
is returned, where variant
is the enum variant that caused the error.
§Arguments
f
- A closure that takes a reference to an enum variant and returns aResult<V, E>
.
§Returns
Ok(Self)
if all variants succeed.Err((variant, e))
if any variant fails, containing the failing variant and the error.
Sourcepub fn checked_new_with_fn(
f: impl FnMut(&K) -> Option<V>,
) -> Result<Self, &'static K>
pub fn checked_new_with_fn( f: impl FnMut(&K) -> Option<V>, ) -> Result<Self, &'static K>
Creates a new EnumTable
using a function that returns an Option
for each variant.
This method applies the provided closure to each variant of the enum. If the closure
returns Some(value)
for all variants, an EnumTable
is constructed and returned as Ok(Self)
.
If the closure returns None
for any variant, the construction is aborted and
Err(variant)
is returned, where variant
is the enum variant that caused the failure.
§Arguments
f
- A closure that takes a reference to an enum variant and returns anOption<V>
.
§Returns
Ok(Self)
if all variants succeed.Err(variant)
if any variant fails, containing the failing variant.
Sourcepub const fn get(&self, variant: &K) -> &V
pub const fn get(&self, variant: &K) -> &V
Returns a reference to the value associated with the given enumeration variant.
§Arguments
variant
- A reference to an enumeration variant.
Sourcepub const fn get_mut(&mut self, variant: &K) -> &mut V
pub const fn get_mut(&mut self, variant: &K) -> &mut V
Returns a mutable reference to the value associated with the given enumeration variant.
§Arguments
variant
- A reference to an enumeration variant.
Sourcepub fn keys(&self) -> impl Iterator<Item = &K>
pub fn keys(&self) -> impl Iterator<Item = &K>
Returns an iterator over references to the keys in the table.
Sourcepub fn values(&self) -> impl Iterator<Item = &V>
pub fn values(&self) -> impl Iterator<Item = &V>
Returns an iterator over references to the values in the table.
Sourcepub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>
pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>
Returns an iterator over mutable references to the values in the table.