Struct Iter

struct Iter<B: 'static> { ... }

An iterator over flags values.

This iterator will yield flags values for contained, defined flags first, with any remaining bits yielded as a final flags value.

Implementations

impl<B> Freeze for Iter<B>

impl<B> RefUnwindSafe for Iter<B>

impl<B> Send for Iter<B>

impl<B> Sync for Iter<B>

impl<B> Unpin for Iter<B>

impl<B> UnwindSafe for Iter<B>

impl<B: Flags> Iterator for Iter<B>

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

impl<I> IntoIterator for Iter<B>

fn into_iter(self: Self) -> I

impl<T> Any for Iter<B>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Iter<B>

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

impl<T> BorrowMut for Iter<B>

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

impl<T> From for Iter<B>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Iter<B>

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 Iter<B>

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

impl<T, U> TryInto for Iter<B>

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