[]Struct oxygengine_core::ecs::hibitset::BitSetXor

pub struct BitSetXor<A, B>(pub A, pub B)
where
    A: BitSetLike,
    B: BitSetLike
;

BitSetXor takes two BitSetLike items, and merges the masks returning a new virtual set, which represents an merged of the two original sets.

Trait Implementations

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

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

The resulting type after applying the & operator.

impl<A, B, T> BitAnd<T> for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike,
    T: BitSetLike

type Output = BitSetAnd<BitSetXor<A, B>, T>

The resulting type after applying the & operator.

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

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

The resulting type after applying the | operator.

impl<A, B, T> BitOr<T> for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike,
    T: BitSetLike

type Output = BitSetOr<BitSetXor<A, B>, T>

The resulting type after applying the | operator.

impl<A, B> BitSetLike for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike

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

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

The resulting type after applying the ^ operator.

impl<A, B, T> BitXor<T> for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike,
    T: BitSetLike

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

The resulting type after applying the ^ operator.

impl<A, B> Clone for BitSetXor<A, B> where
    A: BitSetLike + Clone,
    B: BitSetLike + Clone

impl<A, B> Debug for BitSetXor<A, B> where
    A: BitSetLike + Debug,
    B: BitSetLike + Debug

impl<A, B> IntoIterator for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike

type Item = <BitIter<BitSetXor<A, B>> as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = BitIter<BitSetXor<A, B>>

Which kind of iterator are we turning this into?

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

type Item = <BitIter<&'a BitSetXor<A, B>> as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = BitIter<&'a BitSetXor<A, B>>

Which kind of iterator are we turning this into?

impl<A, B> Join for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike
[src]

type Type = u32

Type of joined components.

type Value = ()

Type of joined storages.

type Mask = BitSetXor<A, B>

Type of joined bit mask.

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

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

The resulting type after applying the ! operator.

impl<A, B> Not for BitSetXor<A, B> where
    A: BitSetLike,
    B: BitSetLike

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

The resulting type after applying the ! operator.

Auto Trait Implementations

impl<A, B> RefUnwindSafe for BitSetXor<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for BitSetXor<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for BitSetXor<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Unpin for BitSetXor<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> UnwindSafe for BitSetXor<A, B> where
    A: UnwindSafe,
    B: 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>,