Module collections::enum_set [] [src]

Unstable (enumset)

: matches collection reform specification, waiting for dust to settle

A structure for holding a set of enum variants.

This module defines a container which uses an efficient bit mask representation to hold C-like enum variants.

Reexports

use core::prelude::v1::*;
use core::marker;
use core::fmt;
use core::iter::FromIterator;
use core::ops::{Sub, BitOr, BitAnd, BitXor};

Structs

EnumSet [Unstable]

A specialized set implementation to use enum types.

Iter [Unstable]

An iterator over an EnumSet

Traits

CLike [Unstable]

An interface for casting C-like enum to usize and back. A typically implementation is as below.

Functions

bit [Unstable]