[][src]Struct enumset::EnumSet

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

An efficient set type for enums.

Serialization

The default representation serializes enumsets as an u8, u16, u32, u64, or u128, whichever is the smallest that can contain all bits that are part of the set.

Unknown bits are ignored, and are simply dropped. To override this behavior, you can add a #[enumset(serialize_deny_unknown)] annotation to your enum.

You can add a #[enumset(serialize_repr = "u8")] annotation to your enum to explicitly set the bit width the EnumSet is serialized as. This can be used to avoid breaking changes in certain serialization formats (such as bincode).

In addition, the #[enumset(serialize_as_list)] annotation causes the EnumSet to be instead serialized as a list. This requires your enum type implement [Serialize] and [Deserialize].

Methods

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

pub fn new() -> Self[src]

Returns an empty set.

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

Returns a set containing a single value.

pub fn empty() -> Self[src]

Returns an empty set.

pub fn all() -> Self[src]

Returns a set with all bits set.

pub fn bit_width() -> u8[src]

Total number of bits this enumset uses. 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() -> u8[src]

The number of valid variants in this enumset.

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

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

Returns the raw bits of this set

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

Constructs a bitset from raw bits.

Panics

If bits not in the enum are set.

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

Returns the number of values in this set.

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

Checks if the set is empty.

pub fn clear(&mut self)[src]

Removes all elements from the set.

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

Checks if this set shares no elements with another.

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

Checks if all elements in another set are in this set.

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

Checks if all elements of this set are in another set.

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

Returns a set containing the union of all elements in both sets.

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

Returns a set containing all elements in common with another set.

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

Returns a set with all elements of the other set removed.

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

Returns a set with all elements not contained in both sets.

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

Returns a set containing all elements 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.

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

Removes a value from this 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.

Important traits for EnumSetIter<T>
pub fn iter(&self) -> EnumSetIter<T>[src]

Creates an iterator over the values in this set.

Trait Implementations

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

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

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

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

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

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

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

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Copy + EnumSetType> Copy for EnumSet<T> where
    T::Repr: Copy
[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]

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

type Output = Self

The resulting type after applying the ! operator.

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>>> BitOr<O> for EnumSet<T>[src]

type Output = Self

The resulting type after applying the | operator.

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>>> BitAndAssign<O> for EnumSet<T>[src]

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

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

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

impl<T: EnumSetType> From<T> 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: Clone + EnumSetType> Clone for EnumSet<T> where
    T::Repr: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

fn default() -> Self[src]

Returns an empty set.

Auto Trait Implementations

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

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

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

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

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