pub struct ExBTreeMap<Key, Value, A: Allocator + Clone>(/* private fields */);Expand description
Specifications for the behavior of std::collections::BTreeMap.
We model a BTreeMap as having a view of type Map<Key, Value>, which reflects the current state of the map.
These specifications are only meaningful if key_obeys_cmp_spec::<Key>() holds.
See key_obeys_cmp_spec for information on use with primitive types and other types.
Axioms about the behavior of BTreeMap are present in the broadcast group vstd::std_specs::btree::group_btree_axioms.
Auto Trait Implementations§
impl<Key, Value, A> Freeze for ExBTreeMap<Key, Value, A>where
A: Freeze,
impl<Key, Value, A> RefUnwindSafe for ExBTreeMap<Key, Value, A>
impl<Key, Value, A> Send for ExBTreeMap<Key, Value, A>
impl<Key, Value, A> Sync for ExBTreeMap<Key, Value, A>
impl<Key, Value, A> Unpin for ExBTreeMap<Key, Value, A>where
A: Unpin,
impl<Key, Value, A> UnwindSafe for ExBTreeMap<Key, Value, A>
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, U> IntoSpecImpl<U> for Twhere
U: From<T>,
impl<T, U> IntoSpecImpl<U> for Twhere
U: From<T>,
Source§impl<T, VERUS_SPEC__A> TryFromSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryFrom<T>,
impl<T, VERUS_SPEC__A> TryFromSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryFrom<T>,
Source§exec fn obeys_try_from_spec() -> bool
exec fn obeys_try_from_spec() -> bool
Source§impl<T, VERUS_SPEC__A> TryIntoSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryInto<T>,
impl<T, VERUS_SPEC__A> TryIntoSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryInto<T>,
Source§exec fn obeys_try_into_spec() -> bool
exec fn obeys_try_into_spec() -> bool
Source§impl<T, U> TryIntoSpecImpl<U> for Twhere
U: TryFrom<T>,
impl<T, U> TryIntoSpecImpl<U> for Twhere
U: TryFrom<T>,
Source§open spec fn obeys_try_into_spec() -> bool
open spec fn obeys_try_into_spec() -> bool
{ <U as TryFromSpec<Self>>::obeys_try_from_spec() }