pub enum Mappings<K = (), V = ()> {
    Simple(Option<Map<K, V>>),
    List(Vec<Map<K, V>>),
}
Expand description

A collection of Maps.

Variants§

§

Simple(Option<Map<K, V>>)

Zero or one mappings.

§

List(Vec<Map<K, V>>)

More than one mapping.

Implementations§

source§

impl<K, V> Mappings<K, V>

source

pub const fn none() -> Self

Returns an empty collection of mappings.

source

pub fn push(&mut self, mapping: Map<K, V>)

Appends mapping to the end of this collection.

source

pub fn and(self, mappings: Self) -> Self

Appends mappings to the end of this collection and returns self.

source

pub fn iter(&self) -> MappingsIter<'_, K, V>

Returns an iterator for these mappings.

source

pub fn len(&self) -> usize

Returns the number of mappings contained.

source

pub fn is_empty(&self) -> bool

Returns true if there are no mappings in this collection.

Trait Implementations§

source§

impl<K: Debug, V: Debug> Debug for Mappings<K, V>

source§

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

Formats the value using the given formatter. Read more
source§

impl<K, V> Default for Mappings<K, V>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<K, V> Extend<Map<K, V>> for Mappings<K, V>

source§

fn extend<T: IntoIterator<Item = Map<K, V>>>(&mut self, iter: T)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<K, V> FromIterator<Map<K, V>> for Mappings<K, V>

source§

fn from_iter<T: IntoIterator<Item = Map<K, V>>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl<K, V> FromIterator<Mappings<K, V>> for Mappings<K, V>

source§

fn from_iter<T: IntoIterator<Item = Self>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, K, V> IntoIterator for &'a Mappings<K, V>

§

type IntoIter = MappingsIter<'a, K, V>

Which kind of iterator are we turning this into?
§

type Item = &'a Map<K, V>

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K, V> IntoIterator for Mappings<K, V>

§

type IntoIter = MappingsIntoIter<K, V>

Which kind of iterator are we turning this into?
§

type Item = Map<K, V>

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K: PartialEq, V: PartialEq> PartialEq for Mappings<K, V>

source§

fn eq(&self, other: &Mappings<K, V>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K: Eq, V: Eq> Eq for Mappings<K, V>

source§

impl<K, V> StructuralEq for Mappings<K, V>

source§

impl<K, V> StructuralPartialEq for Mappings<K, V>

Auto Trait Implementations§

§

impl<K, V> RefUnwindSafe for Mappings<K, V>

§

impl<K, V> Send for Mappings<K, V>
where K: Send, V: Send,

§

impl<K, V> Sync for Mappings<K, V>
where K: Sync, V: Sync,

§

impl<K, V> Unpin for Mappings<K, V>
where K: Unpin, V: Unpin,

§

impl<K, V> UnwindSafe for Mappings<K, V>
where K: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more