Struct U32Digits
struct U32Digits<'a> { ... }
An iterator of u32 digits representation of a BigUint or BigInt,
ordered least significant digit first.
Implementations
impl DoubleEndedIterator for U32Digits<'_>
fn next_back(self: &mut Self) -> Option<<Self as >::Item>
impl ExactSizeIterator for U32Digits<'_>
fn len(self: &Self) -> usize
impl FusedIterator for U32Digits<'_>
impl Iterator for U32Digits<'_>
fn next(self: &mut Self) -> Option<u32>fn size_hint(self: &Self) -> (usize, Option<usize>)fn last(self: Self) -> Option<u32>fn count(self: Self) -> usize
impl<'a> Freeze for U32Digits<'a>
impl<'a> RefUnwindSafe for U32Digits<'a>
impl<'a> Send for U32Digits<'a>
impl<'a> Sync for U32Digits<'a>
impl<'a> Unpin for U32Digits<'a>
impl<'a> UnsafeUnpin for U32Digits<'a>
impl<'a> UnwindSafe for U32Digits<'a>
impl<I> IntoIterator for U32Digits<'a>
fn into_iter(self: Self) -> I
impl<T> Any for U32Digits<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for U32Digits<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for U32Digits<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for U32Digits<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for U32Digits<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for U32Digits<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for U32Digits<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>