Struct U64Digits

struct U64Digits<'a> { ... }

An iterator of u64 digits representation of a BigUint or BigInt, ordered least significant digit first.

Implementations

impl DoubleEndedIterator for U64Digits<'_>

fn next_back(self: &mut Self) -> Option<<Self as >::Item>

impl ExactSizeIterator for U64Digits<'_>

fn len(self: &Self) -> usize

impl FusedIterator for U64Digits<'_>

impl Iterator for U64Digits<'_>

fn next(self: &mut Self) -> Option<u64>
fn size_hint(self: &Self) -> (usize, Option<usize>)
fn nth(self: &mut Self, n: usize) -> Option<u64>
fn last(self: Self) -> Option<u64>
fn count(self: Self) -> usize

impl<'a> Freeze for U64Digits<'a>

impl<'a> RefUnwindSafe for U64Digits<'a>

impl<'a> Send for U64Digits<'a>

impl<'a> Sync for U64Digits<'a>

impl<'a> Unpin for U64Digits<'a>

impl<'a> UnsafeUnpin for U64Digits<'a>

impl<'a> UnwindSafe for U64Digits<'a>

impl<I> IntoIterator for U64Digits<'a>

fn into_iter(self: Self) -> I

impl<T> Any for U64Digits<'a>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for U64Digits<'a>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for U64Digits<'a>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for U64Digits<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for U64Digits<'a>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for U64Digits<'a>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for U64Digits<'a>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>