Struct IterDefinedNames

pub struct IterDefinedNames<B: 'static> { /* private fields */ }

An iterator over all defined named flags.

This iterator will yield flags values for all defined named flags, regardless of whether they are contained in a particular flags value.

Trait Implementations

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

type Item = (&'static str, B);
fn next(&mut self) -> Option<Self::Item>

Auto Trait Implementations

impl<B> Freeze for IterDefinedNames<B> where &'static [Flag<B>]: Freeze,

impl<B> RefUnwindSafe for IterDefinedNames<B> where &'static [Flag<B>]: RefUnwindSafe,

impl<B> Send for IterDefinedNames<B> where &'static [Flag<B>]: Send,

impl<B> Sync for IterDefinedNames<B> where &'static [Flag<B>]: Sync,

impl<B> Unpin for IterDefinedNames<B> where &'static [Flag<B>]: Unpin,

impl<B> UnsafeUnpin for IterDefinedNames<B> where &'static [Flag<B>]: UnsafeUnpin,

impl<B> UnwindSafe for IterDefinedNames<B> where &'static [Flag<B>]: UnwindSafe,

Blanket Implementations

impl<I> IntoIterator for IterDefinedNames<B> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for IterDefinedNames<B> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for IterDefinedNames<B> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for IterDefinedNames<B> where T: ?Sized,

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

impl<T> From<T> for IterDefinedNames<B>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for IterDefinedNames<B> where U: From<T>,

fn into(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<U> for IterDefinedNames<B> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for IterDefinedNames<B> where U: TryFrom<T>,

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