Struct kira::group::GroupSet[][src]

pub struct GroupSet(_);

A set of groups that an item can belong to.

Implementations

impl GroupSet[src]

pub fn new() -> Self[src]

Creates a new, empty GroupSet.

pub fn add(self, id: impl Into<GroupId>) -> Self[src]

Adds a group to the set.

pub fn remove(self, id: impl Into<GroupId>) -> Self[src]

Removes a group from the set.

pub fn contains(&self, id: impl Into<GroupId>) -> bool[src]

Returns true if the set contains the specified group.

pub fn iter(&self) -> Iter<'_, GroupId>[src]

Returns an iterator over the group IDs in this set.

Trait Implementations

impl Clone for GroupSet[src]

impl Debug for GroupSet[src]

impl<'a> IntoIterator for &'a GroupSet[src]

type Item = &'a GroupId

The type of the elements being iterated over.

type IntoIter = Iter<'a, GroupId>

Which kind of iterator are we turning this into?

Auto Trait Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,