[][src]Struct phf::OrderedSet

pub struct OrderedSet<T: 'static> { /* fields omitted */ }

An order-preserving immutable set constructed at compile time.

Unlike a Set, iteration order is guaranteed to match the definition order.

Note

The fields of this struct are public so that they may be initialized by the phf_ordered_set! macro and code generation. They are subject to change at any time and should never be accessed directly.

Methods

impl<T> OrderedSet<T>
[src]

Returns the number of elements in the OrderedSet.

Returns true if the OrderedSet contains no elements.

Returns a reference to the set's internal static instance of the given key.

This can be useful for interning schemes.

Returns the index of the key within the list used to initialize the ordered set.

Returns a reference to the key at an index within the list used to initialize the ordered set. See .get_index(key).

Returns true if value is in the Set.

Important traits for Iter<'a, T>

Returns an iterator over the values in the set.

Values are returned in the same order in which they were defined.

impl<T> OrderedSet<T> where
    T: Eq + PhfHash
[src]

Returns true if other shares no elements with self.

Returns true if other contains all values in self.

Returns true if self contains all values in other.

Trait Implementations

impl<'a, T> IntoIterator for &'a OrderedSet<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Important traits for Iter<'a, T>

Creates an iterator from a value. Read more

impl<T> Debug for OrderedSet<T> where
    T: Debug
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for OrderedSet<T> where
    T: Send + Sync

impl<T> Sync for OrderedSet<T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more