pub enum EtsType {
Set,
OrderedSet,
Bag,
DuplicateBag,
}Expand description
ETS table type.
Variants§
Set
set — one value per key
OrderedSet
ordered_set — sorted, one value per key
Bag
bag — multiple values per key, duplicates allowed
DuplicateBag
duplicate_bag — like bag but allows exact duplicates
Trait Implementations§
impl Copy for EtsType
impl Eq for EtsType
impl StructuralPartialEq for EtsType
Auto Trait Implementations§
impl Freeze for EtsType
impl RefUnwindSafe for EtsType
impl Send for EtsType
impl Sync for EtsType
impl Unpin for EtsType
impl UnsafeUnpin for EtsType
impl UnwindSafe for EtsType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more