pub enum Entry<'info> {
In(Cow<'info, str>),
Name(Cow<'info, str>),
}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(Cow<'info, str>)
The name of the thing that the following entries are in/under.
Name(Cow<'info, str>)
The name of the entry in/under the last given Entry::In.
Implementations§
Trait Implementations§
Source§impl<'info> Ord for Entry<'info>
impl<'info> Ord for Entry<'info>
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<'info> PartialOrd for Entry<'info>
impl<'info> PartialOrd for Entry<'info>
impl<'info> Eq for Entry<'info>
impl<'info> StructuralPartialEq for Entry<'info>
Auto Trait Implementations§
impl<'info> Freeze for Entry<'info>
impl<'info> RefUnwindSafe for Entry<'info>
impl<'info> Send for Entry<'info>
impl<'info> Sync for Entry<'info>
impl<'info> Unpin for Entry<'info>
impl<'info> UnwindSafe for Entry<'info>
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