pub enum Entry<'a, K, V, A = Global>{
Vacant(VacantEntry<'a, K, V, A>),
Occupied(OccupiedEntry<'a, K, V, A>),
}protobuf and ttrpc only.Expand description
Variants§
Vacant(VacantEntry<'a, K, V, A>)
A vacant entry.
Occupied(OccupiedEntry<'a, K, V, A>)
An occupied entry.
Implementations§
Source§impl<'a, K, V, A> Entry<'a, K, V, A>
impl<'a, K, V, A> Entry<'a, K, V, A>
1.0.0 · Sourcepub fn or_insert(self, default: V) -> &'a mut V
Available on crate features grpc and http and std only.
pub fn or_insert(self, default: V) -> &'a mut V
grpc and http and std only.Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
map.entry("poneyland").or_insert(12);
assert_eq!(map["poneyland"], 12);1.0.0 · Sourcepub fn or_insert_with<F>(self, default: F) -> &'a mut Vwhere
F: FnOnce() -> V,
Available on crate features grpc and http and std only.
pub fn or_insert_with<F>(self, default: F) -> &'a mut Vwhere
F: FnOnce() -> V,
grpc and http and std only.Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, String> = BTreeMap::new();
let s = "hoho".to_string();
map.entry("poneyland").or_insert_with(|| s);
assert_eq!(map["poneyland"], "hoho".to_string());Sourcepub fn or_try_insert_with<F, E>(self, default: F) -> Result<&'a mut V, E>
🔬This is a nightly-only experimental API. (try_entry)Available on crate features grpc and http and std only.
pub fn or_try_insert_with<F, E>(self, default: F) -> Result<&'a mut V, E>
try_entry)grpc and http and std only.Ensures a value is in the entry by inserting the result of a fallible default function if empty, and returns a mutable reference to the value in the entry.
This method works identically to or_insert_with except that the default function
should return a Result and, in the case of an error, the error is propagated.
§Examples
#![feature(try_entry)]
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
let value = "42";
map.entry("poneyland").or_try_insert_with(|| value.parse())?;
assert_eq!(map["poneyland"], 42);1.50.0 · Sourcepub fn or_insert_with_key<F>(self, default: F) -> &'a mut V
Available on crate features grpc and http and std only.
pub fn or_insert_with_key<F>(self, default: F) -> &'a mut V
grpc and http and std only.Ensures a value is in the entry by inserting, if empty, the result of the default function.
This method allows for generating key-derived values for insertion by providing the default
function a reference to the key that was moved during the .entry(key) method call.
The reference to the moved key is provided so that cloning or copying the key is
unnecessary, unlike with .or_insert_with(|| ... ).
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
map.entry("poneyland").or_insert_with_key(|key| key.chars().count());
assert_eq!(map["poneyland"], 9);Sourcepub fn or_try_insert_with_key<F, E>(self, default: F) -> Result<&'a mut V, E>
🔬This is a nightly-only experimental API. (try_entry)Available on crate features grpc and http and std only.
pub fn or_try_insert_with_key<F, E>(self, default: F) -> Result<&'a mut V, E>
try_entry)grpc and http and std only.Ensures a value is in the entry by inserting, if empty, the result of the default function.
This method allows for generating key-derived values for insertion by providing the default
function a reference to the key that was moved during the entry(key) method call.
This method works identically to or_insert_with_key except that the default function
should return a Result and, in the case of an error, the error is propagated.
§Examples
#![feature(try_entry)]
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
map.entry("42").or_try_insert_with_key(|key| key.parse())?;
assert_eq!(map["42"], 42);1.10.0 · Sourcepub fn key(&self) -> &K
Available on crate features grpc and http and std only.
pub fn key(&self) -> &K
grpc and http and std only.Returns a reference to this entry’s key.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
assert_eq!(map.entry("poneyland").key(), &"poneyland");1.26.0 · Sourcepub fn and_modify<F>(self, f: F) -> Entry<'a, K, V, A>
Available on crate features grpc and http and std only.
pub fn and_modify<F>(self, f: F) -> Entry<'a, K, V, A>
grpc and http and std only.Provides in-place mutable access to an occupied entry before any potential inserts into the map.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, usize> = BTreeMap::new();
map.entry("poneyland")
.and_modify(|e| { *e += 1 })
.or_insert(42);
assert_eq!(map["poneyland"], 42);
map.entry("poneyland")
.and_modify(|e| { *e += 1 })
.or_insert(42);
assert_eq!(map["poneyland"], 43);1.92.0 · Sourcepub fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V, A>
Available on crate features grpc and http and std only.
pub fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V, A>
grpc and http and std only.Sets the value of the entry, and returns an OccupiedEntry.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, String> = BTreeMap::new();
let entry = map.entry("poneyland").insert_entry("hoho".to_string());
assert_eq!(entry.key(), &"poneyland");Source§impl<'a, K, V, A> Entry<'a, K, V, A>
impl<'a, K, V, A> Entry<'a, K, V, A>
1.28.0 · Sourcepub fn or_default(self) -> &'a mut V
Available on crate features grpc and http and std only.
pub fn or_default(self) -> &'a mut V
grpc and http and std only.Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference to the value in the entry.
§Examples
use std::collections::BTreeMap;
let mut map: BTreeMap<&str, Option<usize>> = BTreeMap::new();
map.entry("poneyland").or_default();
assert_eq!(map["poneyland"], None);Trait Implementations§
Auto Trait Implementations§
impl<'a, K, V, A = Global> !UnwindSafe for Entry<'a, K, V, A>
impl<'a, K, V, A> Freeze for Entry<'a, K, V, A>
impl<'a, K, V, A> RefUnwindSafe for Entry<'a, K, V, A>
impl<'a, K, V, A> Send for Entry<'a, K, V, A>
impl<'a, K, V, A> Sync for Entry<'a, K, V, A>
impl<'a, K, V, A> Unpin for Entry<'a, K, V, A>
impl<'a, K, V, A> UnsafeUnpin for Entry<'a, K, V, A>where
K: UnsafeUnpin,
A: UnsafeUnpin,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§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<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more