Struct ArchivedBTreeMap
#[repr(C)]pub struct ArchivedBTreeMap<K, V, const E: usize = 5> { /* private fields */ }
dep_rkyv
only.Expand description
An archived BTreeMap
.
Implementations§
§impl<K, V, const E: usize> ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> ArchivedBTreeMap<K, V, E>
pub fn iter(&self) -> Iter<'_, K, V, E>
pub fn iter(&self) -> Iter<'_, K, V, E>
Gets an iterator over the entries of the map, sorted by key.
pub fn iter_seal(
this: Seal<'_, ArchivedBTreeMap<K, V, E>>,
) -> IterSeal<'_, K, V, E>
pub fn iter_seal( this: Seal<'_, ArchivedBTreeMap<K, V, E>>, ) -> IterSeal<'_, K, V, E>
Gets a mutable iterator over the entires of the map, sorted by key.
pub fn keys(&self) -> Keys<'_, K, V, E>
pub fn keys(&self) -> Keys<'_, K, V, E>
Gets an iterator over the sorted keys of the map.
pub fn values(&self) -> Values<'_, K, V, E>
pub fn values(&self) -> Values<'_, K, V, E>
Gets an iterator over the values of the map.
pub fn values_seal(
this: Seal<'_, ArchivedBTreeMap<K, V, E>>,
) -> ValuesSeal<'_, K, V, E>
pub fn values_seal( this: Seal<'_, ArchivedBTreeMap<K, V, E>>, ) -> ValuesSeal<'_, K, V, E>
Gets a mutable iterator over the values of the map.
§impl<K, V, const E: usize> ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> ArchivedBTreeMap<K, V, E>
pub fn contains_key<Q>(&self, key: &Q) -> bool
pub fn contains_key<Q>(&self, key: &Q) -> bool
Returns whether the B-tree map contains the given key.
pub fn get<Q>(&self, key: &Q) -> Option<&V> ⓘ
pub fn get<Q>(&self, key: &Q) -> Option<&V> ⓘ
Returns the value associated with the given key, or None
if the key is
not present in the B-tree map.
pub fn get_seal<'a, Q>(
this: Seal<'a, ArchivedBTreeMap<K, V, E>>,
key: &Q,
) -> Option<Seal<'a, V>> ⓘ
pub fn get_seal<'a, Q>( this: Seal<'a, ArchivedBTreeMap<K, V, E>>, key: &Q, ) -> Option<Seal<'a, V>> ⓘ
Returns the mutable value associated with the given key, or None
if
the key is not present in the B-tree map.
pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)> ⓘ
pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)> ⓘ
Gets the key-value pair associated with the given key, or None
if the
key is not present in the B-tree map.
pub fn get_key_value_seal<'a, Q>(
this: Seal<'a, ArchivedBTreeMap<K, V, E>>,
key: &Q,
) -> Option<(&'a K, Seal<'a, V>)> ⓘ
pub fn get_key_value_seal<'a, Q>( this: Seal<'a, ArchivedBTreeMap<K, V, E>>, key: &Q, ) -> Option<(&'a K, Seal<'a, V>)> ⓘ
Gets the mutable key-value pair associated with the given key, or None
if the key is not present in the B-tree map.
pub fn resolve_from_len(
len: usize,
resolver: BTreeMapResolver,
out: Place<ArchivedBTreeMap<K, V, E>>,
)
pub fn resolve_from_len( len: usize, resolver: BTreeMapResolver, out: Place<ArchivedBTreeMap<K, V, E>>, )
Resolves an ArchivedBTreeMap
from the given length, resolver, and
output place.
pub fn serialize_from_ordered_iter<I, BKU, BVU, KU, VU, S>(
iter: I,
serializer: &mut S,
) -> Result<BTreeMapResolver, <S as Fallible>::Error> ⓘ
pub fn serialize_from_ordered_iter<I, BKU, BVU, KU, VU, S>( iter: I, serializer: &mut S, ) -> Result<BTreeMapResolver, <S as Fallible>::Error> ⓘ
Serializes an ArchivedBTreeMap
from the given iterator and serializer.
pub fn visit<T>(&self, f: impl FnMut(&K, &V) -> ControlFlow<T>) -> Option<T> ⓘ
pub fn visit<T>(&self, f: impl FnMut(&K, &V) -> ControlFlow<T>) -> Option<T> ⓘ
Visits every key-value pair in the B-tree with a function.
If f
returns ControlFlow::Break
, visit
will return Some
with the
broken value. If f
returns Continue
for every pair in the tree,
visit
will return None
.
pub fn visit_seal<T>(
this: Seal<'_, ArchivedBTreeMap<K, V, E>>,
f: impl FnMut(&K, Seal<'_, V>) -> ControlFlow<T>,
) -> Option<T> ⓘ
pub fn visit_seal<T>( this: Seal<'_, ArchivedBTreeMap<K, V, E>>, f: impl FnMut(&K, Seal<'_, V>) -> ControlFlow<T>, ) -> Option<T> ⓘ
Visits every mutable key-value pair in the B-tree with a function.
If f
returns ControlFlow::Break
, visit
will return Some
with the
broken value. If f
returns Continue
for every pair in the tree,
visit
will return None
.
Trait Implementations§
§impl<K, V, const E: usize, __C> CheckBytes<__C> for ArchivedBTreeMap<K, V, E>where
__C: Fallible + ?Sized,
<__C as Fallible>::Error: Trace,
ArchivedBTreeMap<K, V, E>: Verify<__C>,
RelPtr<Node<K, V, E>, i32_le>: CheckBytes<__C>,
u32_le: CheckBytes<__C>,
PhantomData<(K, V)>: CheckBytes<__C>,
impl<K, V, const E: usize, __C> CheckBytes<__C> for ArchivedBTreeMap<K, V, E>where
__C: Fallible + ?Sized,
<__C as Fallible>::Error: Trace,
ArchivedBTreeMap<K, V, E>: Verify<__C>,
RelPtr<Node<K, V, E>, i32_le>: CheckBytes<__C>,
u32_le: CheckBytes<__C>,
PhantomData<(K, V)>: CheckBytes<__C>,
§impl<K, V, const E: usize> Debug for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> Debug for ArchivedBTreeMap<K, V, E>
§impl<K, V, D> Deserialize<BTreeMap<K, V>, D> for ArchivedBTreeMap<<K as Archive>::Archived, <V as Archive>::Archived>
impl<K, V, D> Deserialize<BTreeMap<K, V>, D> for ArchivedBTreeMap<<K as Archive>::Archived, <V as Archive>::Archived>
§impl<A, B, K, V, D> DeserializeWith<ArchivedBTreeMap<<A as ArchiveWith<K>>::Archived, <B as ArchiveWith<V>>::Archived>, BTreeMap<K, V>, D> for MapKV<A, B>where
A: ArchiveWith<K> + DeserializeWith<<A as ArchiveWith<K>>::Archived, K, D>,
B: ArchiveWith<V> + DeserializeWith<<B as ArchiveWith<V>>::Archived, V, D>,
K: Ord,
D: Fallible + ?Sized,
impl<A, B, K, V, D> DeserializeWith<ArchivedBTreeMap<<A as ArchiveWith<K>>::Archived, <B as ArchiveWith<V>>::Archived>, BTreeMap<K, V>, D> for MapKV<A, B>where
A: ArchiveWith<K> + DeserializeWith<<A as ArchiveWith<K>>::Archived, K, D>,
B: ArchiveWith<V> + DeserializeWith<<B as ArchiveWith<V>>::Archived, V, D>,
K: Ord,
D: Fallible + ?Sized,
§fn deserialize_with(
field: &ArchivedBTreeMap<<A as ArchiveWith<K>>::Archived, <B as ArchiveWith<V>>::Archived>,
deserializer: &mut D,
) -> Result<BTreeMap<K, V>, <D as Fallible>::Error> ⓘ
fn deserialize_with( field: &ArchivedBTreeMap<<A as ArchiveWith<K>>::Archived, <B as ArchiveWith<V>>::Archived>, deserializer: &mut D, ) -> Result<BTreeMap<K, V>, <D as Fallible>::Error> ⓘ
F
using the given deserializer.§impl<K, V, Q, const E: usize> Index<&Q> for ArchivedBTreeMap<K, V, E>
impl<K, V, Q, const E: usize> Index<&Q> for ArchivedBTreeMap<K, V, E>
§impl<K, V, const E1: usize, const E2: usize> PartialEq<ArchivedBTreeMap<K, V, E2>> for ArchivedBTreeMap<K, V, E1>
impl<K, V, const E1: usize, const E2: usize> PartialEq<ArchivedBTreeMap<K, V, E2>> for ArchivedBTreeMap<K, V, E1>
§impl<K, V, AK, AV> PartialEq<BTreeMap<K, V>> for ArchivedBTreeMap<AK, AV>
impl<K, V, AK, AV> PartialEq<BTreeMap<K, V>> for ArchivedBTreeMap<AK, AV>
§impl<C, K, V, const E: usize> Verify<C> for ArchivedBTreeMap<K, V, E>where
C: Fallible + ArchiveContext + ?Sized,
<C as Fallible>::Error: Source,
K: CheckBytes<C>,
V: CheckBytes<C>,
impl<C, K, V, const E: usize> Verify<C> for ArchivedBTreeMap<K, V, E>where
C: Fallible + ArchiveContext + ?Sized,
<C as Fallible>::Error: Source,
K: CheckBytes<C>,
V: CheckBytes<C>,
impl<K, V, const E: usize> Eq for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> Portable for ArchivedBTreeMap<K, V, E>
Auto Trait Implementations§
impl<K, V, const E: usize> Freeze for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> RefUnwindSafe for ArchivedBTreeMap<K, V, E>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, const E: usize> Send for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> Sync for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize = 5> !Unpin for ArchivedBTreeMap<K, V, E>
impl<K, V, const E: usize> UnwindSafe for ArchivedBTreeMap<K, V, E>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out
indicating that a T
is niched.