pub enum Entry<In, Name> {
In(In),
Name(Name),
}Expand description
This represents either an entry name, or the name of the thing that the entry is in (for instance the name of a pallet or of a Runtime API trait).
Iterators returning this will iterate containers in order, first returning
Entry::In to communicate which container (eg pallet or Runtime API trait) is being
iterated over next, and then a Entry::Names for the name of each of the entries in
the given container.
A container name will not be handed back more than once.
Variants§
In(In)
The name of the thing that the following entries are in/under.
Name(Name)
The name of the entry in/under the last given Entry::In.
Implementations§
Trait Implementations§
Source§impl<In: Ord, Name: Ord> Ord for Entry<In, Name>
impl<In: Ord, Name: Ord> Ord for Entry<In, Name>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<In: PartialOrd, Name: PartialOrd> PartialOrd for Entry<In, Name>
impl<In: PartialOrd, Name: PartialOrd> PartialOrd for Entry<In, Name>
impl<In: Eq, Name: Eq> Eq for Entry<In, Name>
impl<In, Name> StructuralPartialEq for Entry<In, Name>
Auto Trait Implementations§
impl<In, Name> Freeze for Entry<In, Name>
impl<In, Name> RefUnwindSafe for Entry<In, Name>where
In: RefUnwindSafe,
Name: RefUnwindSafe,
impl<In, Name> Send for Entry<In, Name>
impl<In, Name> Sync for Entry<In, Name>
impl<In, Name> Unpin for Entry<In, Name>
impl<In, Name> UnwindSafe for Entry<In, Name>where
In: UnwindSafe,
Name: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more