[][src]Struct zdex::FromU32

pub struct FromU32(_);

A built-in Zdex-compatible BitCollection for u32.

Trait Implementations

impl<T: Into<FromU32>> BitAnd<T> for FromU32[src]

type Output = Self

The resulting type after applying the & operator.

impl<T: Into<FromU32>> BitAndAssign<T> for FromU32[src]

impl BitCollection for FromU32[src]

impl<T: Into<FromU32>> BitOr<T> for FromU32[src]

type Output = Self

The resulting type after applying the | operator.

impl<T: Into<FromU32>> BitOrAssign<T> for FromU32[src]

impl<T: Into<FromU32>> BitXor<T> for FromU32[src]

type Output = Self

The resulting type after applying the ^ operator.

impl<T: Into<FromU32>> BitXorAssign<T> for FromU32[src]

impl Clone for FromU32[src]

impl Copy for FromU32[src]

impl Debug for FromU32[src]

impl<T: Into<FromU32>> Extend<T> for FromU32[src]

impl<'a, T: Clone + Into<FromU32>> From<&'a T> for FromU32[src]

impl<'a, T: Clone + Into<FromU32>> From<&'a mut T> for FromU32[src]

impl From<BitIter<FromU32>> for FromU32[src]

impl From<BitU8> for FromU32[src]

impl From<u32> for FromU32[src]

impl<T: Into<FromU32>> FromIterator<T> for FromU32[src]

impl IntoIterator for FromU32[src]

type IntoIter = BitIter<Self>

Which kind of iterator are we turning this into?

type Item = BitU8

The type of the elements being iterated over.

impl Not for FromU32[src]

type Output = Self

The resulting type after applying the ! operator.

impl<T: Into<FromU32>> Sub<T> for FromU32[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Into<FromU32>> SubAssign<T> for FromU32[src]

Auto Trait Implementations

impl RefUnwindSafe for FromU32

impl Send for FromU32

impl Sync for FromU32

impl Unpin for FromU32

impl UnwindSafe for FromU32

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<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> 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<T> Zdexed for T where
    T: BitCollection<Item = BitU8> + Copy + Debug
[src]