[][src]Struct cranelift_entity_set::BoundEntitySet

pub struct BoundEntitySet<'a, K: EntityRef> { /* fields omitted */ }

Methods

impl<'a, K: EntityRef> BoundEntitySet<'a, K>[src]

pub fn contains(&self, k: K) -> bool[src]

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

Important traits for EntitySetIter<'a, T>
pub fn iter(&self) -> EntitySetIter<K>[src]

Trait Implementations

impl<'a, K: Clone + EntityRef> Clone for BoundEntitySet<'a, K>[src]

impl<'a, K> Debug for BoundEntitySet<'a, K> where
    K: EntityRef + Debug
[src]

impl<'a, K: EntityRef> Eq for BoundEntitySet<'a, K>[src]

impl<'a, K: EntityRef> IntoIterator for &'a BoundEntitySet<'a, K>[src]

type Item = K

The type of the elements being iterated over.

type IntoIter = EntitySetIter<'a, K>

Which kind of iterator are we turning this into?

impl<'a, K: EntityRef> PartialEq<BoundEntitySet<'a, K>> for BoundEntitySet<'a, K>[src]

Auto Trait Implementations

impl<'a, K> RefUnwindSafe for BoundEntitySet<'a, K> where
    K: RefUnwindSafe

impl<'a, K> Send for BoundEntitySet<'a, K> where
    K: Send + Sync

impl<'a, K> Sync for BoundEntitySet<'a, K> where
    K: Sync

impl<'a, K> Unpin for BoundEntitySet<'a, K> where
    K: Unpin

impl<'a, K> UnwindSafe for BoundEntitySet<'a, K> where
    K: RefUnwindSafe + UnwindSafe

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.