pub enum Nested {}
Expand description
Trait Implementations§
source§impl<V, S> TryApply<V, Nested, Unique> for HashSet<V, S>where
for<'a> &'a V: IntoSpan,
V: Eq + Hash,
S: BuildHasher,
impl<V, S> TryApply<V, Nested, Unique> for HashSet<V, S>where for<'a> &'a V: IntoSpan, V: Eq + Hash, S: BuildHasher,
source§impl<V, D> TryApplySelf<V, Nested, D> for BTreeSet<V>where
D: Dedup + ?Sized,
Self: TryApply<V, Nested, D>,
impl<V, D> TryApplySelf<V, Nested, D> for BTreeSet<V>where D: Dedup + ?Sized, Self: TryApply<V, Nested, D>,
source§fn try_apply_self(&mut self, another: Self) -> Result<()>
fn try_apply_self(&mut self, another: Self) -> Result<()>
source§impl<V, S, D> TryApplySelf<V, Nested, D> for HashSet<V, S>where
D: Dedup + ?Sized,
S: BuildHasher,
Self: TryApply<V, Nested, D>,
impl<V, S, D> TryApplySelf<V, Nested, D> for HashSet<V, S>where D: Dedup + ?Sized, S: BuildHasher, Self: TryApply<V, Nested, D>,
source§fn try_apply_self(&mut self, another: Self) -> Result<()>
fn try_apply_self(&mut self, another: Self) -> Result<()>
source§impl<V, D> TryApplySelf<V, Nested, D> for Vec<V>where
D: Dedup + ?Sized,
Self: TryApply<V, Nested, D>,
impl<V, D> TryApplySelf<V, Nested, D> for Vec<V>where D: Dedup + ?Sized, Self: TryApply<V, Nested, D>,
source§fn try_apply_self(&mut self, another: Self) -> Result<()>
fn try_apply_self(&mut self, another: Self) -> Result<()>
impl Copy for Nested
impl Kind for Nested
impl Single for Nested
Auto Trait Implementations§
impl RefUnwindSafe for Nested
impl Send for Nested
impl Sync for Nested
impl Unpin for Nested
impl UnwindSafe for Nested
Blanket Implementations§
source§impl<T, V> TryMerge<V> for Twhere
T: ?Sized,
impl<T, V> TryMerge<V> for Twhere T: ?Sized,
source§fn try_merge<K, D>(&mut self, val: V) -> Result<(), Error>where
T: TryApply<V, K, D>,
K: Kind + ?Sized,
D: Dedup + ?Sized,
fn try_merge<K, D>(&mut self, val: V) -> Result<(), Error>where T: TryApply<V, K, D>, K: Kind + ?Sized, D: Dedup + ?Sized,
Merges the provided
value
to this field::Container
with the
specified parsing Kind
and Dedup
lication strategy. Read moresource§fn try_merge_self<K, D>(&mut self, another: T) -> Result<(), Error>where
T: TryApplySelf<V, K, D>,
K: Kind + ?Sized,
D: Dedup + ?Sized,
fn try_merge_self<K, D>(&mut self, another: T) -> Result<(), Error>where T: TryApplySelf<V, K, D>, K: Kind + ?Sized, D: Dedup + ?Sized,
Merges the value extracted from
another
field::Container
to
this field::Container
with the specified parsing Kind
and
Dedup
lication strategy. Read more