[][src]Struct zdex::FromU64

pub struct FromU64(_);

A built-in Zdex-compatible BitCollection for u64.

Trait Implementations

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

type Output = Self

The resulting type after applying the & operator.

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

impl BitCollection for FromU64[src]

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

type Output = Self

The resulting type after applying the | operator.

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

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

type Output = Self

The resulting type after applying the ^ operator.

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

impl Clone for FromU64[src]

impl Copy for FromU64[src]

impl Debug for FromU64[src]

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

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

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

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

impl From<BitU8> for FromU64[src]

impl From<u64> for FromU64[src]

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

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

type Output = Self

The resulting type after applying the ! operator.

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

type Output = Self

The resulting type after applying the - operator.

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

Auto Trait Implementations

impl RefUnwindSafe for FromU64

impl Send for FromU64

impl Sync for FromU64

impl Unpin for FromU64

impl UnwindSafe for FromU64

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]