Struct Iter

struct Iter { ... }

An iterator over a set of fields.

Implementations

impl Debug for Iter

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Freeze for Iter

impl Iterator for Iter

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

impl RefUnwindSafe for Iter

impl Send for Iter

impl Sync for Iter

impl Unpin for Iter

impl UnsafeUnpin for Iter

impl UnwindSafe for Iter

impl<I> IntoIterator for Iter

fn into_iter(self: Self) -> I

impl<T> Any for Iter

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Iter

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

impl<T> BorrowMut for Iter

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

impl<T> From for Iter

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Iter

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

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

impl<T, U> TryInto for Iter

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