#[non_exhaustive]pub struct OccupiedError<'a, K, V, A = Global>{
pub entry: OccupiedEntry<'a, K, V, A>,
pub key: K,
pub value: V,
}🔬This is a nightly-only experimental API. (
map_try_insert)Expand description
The error returned by try_insert when the key already exists.
Contains the occupied entry, key, and the value that was not inserted.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.entry: OccupiedEntry<'a, K, V, A>🔬This is a nightly-only experimental API. (
map_try_insert)The entry in the map that was already occupied.
key: K🔬This is a nightly-only experimental API. (
map_try_insert)The key which was not inserted, because the entry was already occupied.
value: V🔬This is a nightly-only experimental API. (
map_try_insert)The value which was not inserted, because the entry was already occupied.
Trait Implementations§
Auto Trait Implementations§
impl<'a, K, V, A> Freeze for OccupiedError<'a, K, V, A>
impl<'a, K, V, A> RefUnwindSafe for OccupiedError<'a, K, V, A>
impl<'a, K, V, A> Send for OccupiedError<'a, K, V, A>
impl<'a, K, V, A> Sync for OccupiedError<'a, K, V, A>
impl<'a, K, V, A> Unpin for OccupiedError<'a, K, V, A>
impl<'a, K, V, A> UnsafeUnpin for OccupiedError<'a, K, V, A>
impl<'a, K, V, A = Global> !UnwindSafe for OccupiedError<'a, K, V, 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> 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