[]Struct oxygengine_core::ecs::hibitset::BitSetNot

pub struct BitSetNot<A>(pub A)
where
    A: BitSetLike
;

BitSetNot takes a BitSetLike item, and produced an inverted virtual set. Note: the implementation is sub-optimal because layers 1-3 are not active.

Trait Implementations

impl<'a, A, T> BitAnd<T> for &'a BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetAnd<&'a BitSetNot<A>, T>

The resulting type after applying the & operator.

impl<A, T> BitAnd<T> for BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetAnd<BitSetNot<A>, T>

The resulting type after applying the & operator.

impl<'a, A, T> BitOr<T> for &'a BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetOr<&'a BitSetNot<A>, T>

The resulting type after applying the | operator.

impl<A, T> BitOr<T> for BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetOr<BitSetNot<A>, T>

The resulting type after applying the | operator.

impl<A> BitSetLike for BitSetNot<A> where
    A: BitSetLike

impl<'a, A, T> BitXor<T> for &'a BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetXor<&'a BitSetNot<A>, T>

The resulting type after applying the ^ operator.

impl<A, T> BitXor<T> for BitSetNot<A> where
    A: BitSetLike,
    T: BitSetLike

type Output = BitSetXor<BitSetNot<A>, T>

The resulting type after applying the ^ operator.

impl<A> Clone for BitSetNot<A> where
    A: BitSetLike + Clone

impl<A> Debug for BitSetNot<A> where
    A: BitSetLike + Debug

impl<A> IntoIterator for BitSetNot<A> where
    A: BitSetLike

type Item = <BitIter<BitSetNot<A>> as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = BitIter<BitSetNot<A>>

Which kind of iterator are we turning this into?

impl<'a, A> IntoIterator for &'a BitSetNot<A> where
    A: BitSetLike

type Item = <BitIter<&'a BitSetNot<A>> as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = BitIter<&'a BitSetNot<A>>

Which kind of iterator are we turning this into?

impl<'a, A> Join for &'a BitSetNot<A> where
    A: BitSetLike
[src]

type Type = u32

Type of joined components.

type Value = ()

Type of joined storages.

type Mask = &'a BitSetNot<A>

Type of joined bit mask.

impl<A> Join for BitSetNot<A> where
    A: BitSetLike
[src]

type Type = u32

Type of joined components.

type Value = ()

Type of joined storages.

type Mask = BitSetNot<A>

Type of joined bit mask.

impl<'a, A> Not for &'a BitSetNot<A> where
    A: BitSetLike

type Output = BitSetNot<&'a BitSetNot<A>>

The resulting type after applying the ! operator.

impl<A> Not for BitSetNot<A> where
    A: BitSetLike

type Output = BitSetNot<BitSetNot<A>>

The resulting type after applying the ! operator.

Auto Trait Implementations

impl<A> RefUnwindSafe for BitSetNot<A> where
    A: RefUnwindSafe

impl<A> Send for BitSetNot<A> where
    A: Send

impl<A> Sync for BitSetNot<A> where
    A: Sync

impl<A> Unpin for BitSetNot<A> where
    A: Unpin

impl<A> UnwindSafe for BitSetNot<A> where
    A: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

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

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

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> Resource for T where
    T: Any, 
[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>,