[][src]Struct zdex::FromU128

pub struct FromU128(_);

A built-in Zdex-compatible BitCollection for u128.

Trait Implementations

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

type Output = Self

The resulting type after applying the & operator.

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

impl BitCollection for FromU128[src]

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

type Output = Self

The resulting type after applying the | operator.

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

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

type Output = Self

The resulting type after applying the ^ operator.

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

impl Clone for FromU128[src]

impl Copy for FromU128[src]

impl Debug for FromU128[src]

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

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

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

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

impl From<BitU8> for FromU128[src]

impl From<u128> for FromU128[src]

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

impl IntoIterator for FromU128[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 FromU128[src]

type Output = Self

The resulting type after applying the ! operator.

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

type Output = Self

The resulting type after applying the - operator.

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

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<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]