[][src]Struct wasmer_enumset::EnumSet

pub struct EnumSet<T: EnumSetType> { /* fields omitted */ }

An efficient set type for enums.

It is implemented using a bitset stored using the smallest integer that can fit all bits in the underlying enum. In general, an enum variant with a numeric value of n is stored in the nth least significant bit (corresponding with a mask of, e.g. 1 << enum as u32).

Serialization

When the serde feature is enabled, EnumSets can be serialized and deserialized using the serde crate. The exact serialization format can be controlled with additional attributes on the enum type. These attributes are valid regardless of whether the serde feature is enabled.

By default, EnumSets serialize by directly writing out the underlying bitset as an integer of the smallest type that can fit in the underlying enum. You can add a #[enumset(serialize_repr = "u8")] attribute to your enum to control the integer type used for serialization. This can be important for avoiding unintentional breaking changes when EnumSets are serialized with formats like bincode.

By default, unknown bits are ignored and silently removed from the bitset. To override this behavior, you can add a #[enumset(serialize_deny_unknown)] attribute. This will cause deserialization to fail if an invalid bit is set.

In addition, the #[enumset(serialize_as_list)] attribute causes the EnumSet to be instead serialized as a list of enum variants. This requires your enum type implement [Serialize] and [Deserialize]. Note that this is a breaking change

Implementations

impl<T: EnumSetType> EnumSet<T>[src]

pub fn new() -> Self[src]

Creates an empty EnumSet.

pub fn only(t: T) -> Self[src]

Returns an EnumSet containing a single element.

pub fn empty() -> Self[src]

Creates an empty EnumSet.

This is an alias for EnumSet::new.

pub fn all() -> Self[src]

Returns an EnumSet containing all valid variants of the enum.

pub fn bit_width() -> u32[src]

Total number of bits used by this type. Note that the actual amount of space used is rounded up to the next highest integer type (u8, u16, u32, u64, or u128).

This is the same as EnumSet::variant_count except in enums with "sparse" variants. (e.g. enum Foo { A = 10, B = 20 })

pub fn variant_count() -> u32[src]

The number of valid variants that this type can contain.

This is the same as EnumSet::bit_width except in enums with "sparse" variants. (e.g. enum Foo { A = 10, B = 20 })

pub fn len(&self) -> usize[src]

Returns the number of elements in this set.

pub fn is_empty(&self) -> bool[src]

Returns true if the set contains no elements.

pub fn clear(&mut self)[src]

Removes all elements from the set.

pub fn is_disjoint(&self, other: Self) -> bool[src]

Returns true if self has no elements in common with other. This is equivalent to checking for an empty intersection.

pub fn is_superset(&self, other: Self) -> bool[src]

Returns true if the set is a superset of another, i.e., self contains at least all the values in other.

pub fn is_subset(&self, other: Self) -> bool[src]

Returns true if the set is a subset of another, i.e., other contains at least all the values in self.

pub fn union(&self, other: Self) -> Self[src]

Returns a set containing any elements present in either set.

pub fn intersection(&self, other: Self) -> Self[src]

Returns a set containing every element present in both sets.

pub fn difference(&self, other: Self) -> Self[src]

Returns a set containing element present in self but not in other.

pub fn symmetrical_difference(&self, other: Self) -> Self[src]

Returns a set containing every element present in either self or other, but is not present in both.

pub fn complement(&self) -> Self[src]

Returns a set containing all enum variants not in this set.

pub fn contains(&self, value: T) -> bool[src]

Checks whether this set contains a value.

pub fn insert(&mut self, value: T) -> bool[src]

Adds a value to this set.

If the set did not have this value present, true is returned.

If the set did have this value present, false is returned.

pub fn remove(&mut self, value: T) -> bool[src]

Removes a value from this set. Returns whether the value was present in the set.

pub fn insert_all(&mut self, other: Self)[src]

Adds all elements in another set to this one.

pub fn remove_all(&mut self, other: Self)[src]

Removes all values in another set from this one.

pub fn iter(&self) -> EnumSetIter<T>

Notable traits for EnumSetIter<T>

impl<T: EnumSetType> Iterator for EnumSetIter<T> type Item = T;
[src]

Creates an iterator over the values in this set.

Note that iterator invalidation is impossible as the iterator contains a copy of this type, rather than holding a reference to it.

impl<T: EnumSetType> EnumSet<T>[src]

pub fn as_u8(&self) -> u8[src]

Returns a u8 representing the elements of this set.

If the underlying bitset will not fit in a u8, this method will panic.

pub fn try_as_u8(&self) -> Option<u8>[src]

Tries to return a u8 representing the elements of this set.

If the underlying bitset will not fit in a u8, this method will instead return None.

pub fn as_u8_truncated(&self) -> u8[src]

Returns a truncated u8 representing the elements of this set.

If the underlying bitset will not fit in a u8, this method will truncate any bits that don't fit.

pub fn from_u8(bits: u8) -> Self[src]

Constructs a bitset from a u8.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_u8(bits: u8) -> Option<Self>[src]

Attempts to constructs a bitset from a u8.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_u8_truncated(bits: u8) -> Self[src]

Constructs a bitset from a u8, ignoring invalid variants.

pub fn as_u16(&self) -> u16[src]

Returns a u16 representing the elements of this set.

If the underlying bitset will not fit in a u16, this method will panic.

pub fn try_as_u16(&self) -> Option<u16>[src]

Tries to return a u16 representing the elements of this set.

If the underlying bitset will not fit in a u16, this method will instead return None.

pub fn as_u16_truncated(&self) -> u16[src]

Returns a truncated u16 representing the elements of this set.

If the underlying bitset will not fit in a u16, this method will truncate any bits that don't fit.

pub fn from_u16(bits: u16) -> Self[src]

Constructs a bitset from a u16.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_u16(bits: u16) -> Option<Self>[src]

Attempts to constructs a bitset from a u16.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_u16_truncated(bits: u16) -> Self[src]

Constructs a bitset from a u16, ignoring invalid variants.

pub fn as_u32(&self) -> u32[src]

Returns a u32 representing the elements of this set.

If the underlying bitset will not fit in a u32, this method will panic.

pub fn try_as_u32(&self) -> Option<u32>[src]

Tries to return a u32 representing the elements of this set.

If the underlying bitset will not fit in a u32, this method will instead return None.

pub fn as_u32_truncated(&self) -> u32[src]

Returns a truncated u32 representing the elements of this set.

If the underlying bitset will not fit in a u32, this method will truncate any bits that don't fit.

pub fn from_u32(bits: u32) -> Self[src]

Constructs a bitset from a u32.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_u32(bits: u32) -> Option<Self>[src]

Attempts to constructs a bitset from a u32.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_u32_truncated(bits: u32) -> Self[src]

Constructs a bitset from a u32, ignoring invalid variants.

pub fn as_u64(&self) -> u64[src]

Returns a u64 representing the elements of this set.

If the underlying bitset will not fit in a u64, this method will panic.

pub fn try_as_u64(&self) -> Option<u64>[src]

Tries to return a u64 representing the elements of this set.

If the underlying bitset will not fit in a u64, this method will instead return None.

pub fn as_u64_truncated(&self) -> u64[src]

Returns a truncated u64 representing the elements of this set.

If the underlying bitset will not fit in a u64, this method will truncate any bits that don't fit.

pub fn from_u64(bits: u64) -> Self[src]

Constructs a bitset from a u64.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_u64(bits: u64) -> Option<Self>[src]

Attempts to constructs a bitset from a u64.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_u64_truncated(bits: u64) -> Self[src]

Constructs a bitset from a u64, ignoring invalid variants.

pub fn as_u128(&self) -> u128[src]

Returns a u128 representing the elements of this set.

If the underlying bitset will not fit in a u128, this method will panic.

pub fn try_as_u128(&self) -> Option<u128>[src]

Tries to return a u128 representing the elements of this set.

If the underlying bitset will not fit in a u128, this method will instead return None.

pub fn as_u128_truncated(&self) -> u128[src]

Returns a truncated u128 representing the elements of this set.

If the underlying bitset will not fit in a u128, this method will truncate any bits that don't fit.

pub fn from_u128(bits: u128) -> Self[src]

Constructs a bitset from a u128.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_u128(bits: u128) -> Option<Self>[src]

Attempts to constructs a bitset from a u128.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_u128_truncated(bits: u128) -> Self[src]

Constructs a bitset from a u128, ignoring invalid variants.

pub fn as_usize(&self) -> usize[src]

Returns a usize representing the elements of this set.

If the underlying bitset will not fit in a usize, this method will panic.

pub fn try_as_usize(&self) -> Option<usize>[src]

Tries to return a usize representing the elements of this set.

If the underlying bitset will not fit in a usize, this method will instead return None.

pub fn as_usize_truncated(&self) -> usize[src]

Returns a truncated usize representing the elements of this set.

If the underlying bitset will not fit in a usize, this method will truncate any bits that don't fit.

pub fn from_usize(bits: usize) -> Self[src]

Constructs a bitset from a usize.

If a bit that doesn't correspond to an enum variant is set, this method will panic.

pub fn try_from_usize(bits: usize) -> Option<Self>[src]

Attempts to constructs a bitset from a usize.

If a bit that doesn't correspond to an enum variant is set, this method will return None.

pub fn from_usize_truncated(bits: usize) -> Self[src]

Constructs a bitset from a usize, ignoring invalid variants.

Trait Implementations

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitAnd<O> for EnumSet<T>[src]

type Output = Self

The resulting type after applying the & operator.

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitAndAssign<O> for EnumSet<T>[src]

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitOr<O> for EnumSet<T>[src]

type Output = Self

The resulting type after applying the | operator.

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitOrAssign<O> for EnumSet<T>[src]

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitXor<O> for EnumSet<T>[src]

type Output = Self

The resulting type after applying the ^ operator.

impl<T: EnumSetType, O: Into<EnumSet<T>>> BitXorAssign<O> for EnumSet<T>[src]

impl<T: Clone + EnumSetType> Clone for EnumSet<T> where
    T::Repr: Clone
[src]

impl<T: Copy + EnumSetType> Copy for EnumSet<T> where
    T::Repr: Copy
[src]

impl<T: EnumSetType + Debug> Debug for EnumSet<T>[src]

impl<T: EnumSetType> Default for EnumSet<T>[src]

pub fn default() -> Self[src]

Returns an empty set.

impl<T: Eq + EnumSetType> Eq for EnumSet<T> where
    T::Repr: Eq
[src]

impl<T: EnumSetType> Extend<EnumSet<T>> for EnumSet<T>[src]

impl<T: EnumSetType> Extend<T> for EnumSet<T>[src]

impl<T: EnumSetType> From<T> for EnumSet<T>[src]

impl<T: EnumSetType> FromIterator<EnumSet<T>> for EnumSet<T>[src]

impl<T: EnumSetType> FromIterator<T> for EnumSet<T>[src]

impl<T: EnumSetType> Hash for EnumSet<T>[src]

impl<T: EnumSetType> IntoIterator for EnumSet<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = EnumSetIter<T>

Which kind of iterator are we turning this into?

impl<T: EnumSetType> Not for EnumSet<T>[src]

type Output = Self

The resulting type after applying the ! operator.

impl<T: EnumSetType> Ord for EnumSet<T>[src]

impl<T: PartialEq + EnumSetType> PartialEq<EnumSet<T>> for EnumSet<T> where
    T::Repr: PartialEq
[src]

impl<T: EnumSetType> PartialEq<T> for EnumSet<T>[src]

impl<T: EnumSetType> PartialOrd<EnumSet<T>> for EnumSet<T>[src]

impl<T: EnumSetType> StructuralEq for EnumSet<T>[src]

impl<T: EnumSetType> StructuralPartialEq for EnumSet<T>[src]

impl<T: EnumSetType, O: Into<EnumSet<T>>> Sub<O> for EnumSet<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: EnumSetType, O: Into<EnumSet<T>>> SubAssign<O> for EnumSet<T>[src]

Auto Trait Implementations

impl<T> Send for EnumSet<T> where
    <T as EnumSetTypePrivate>::Repr: Send
[src]

impl<T> Sync for EnumSet<T> where
    <T as EnumSetTypePrivate>::Repr: Sync
[src]

impl<T> Unpin for EnumSet<T> where
    <T as EnumSetTypePrivate>::Repr: Unpin
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.