[][src]Enum abi_stable::std_types::map::REntry

#[repr(C)]pub enum REntry<'a, K, V> {
    Occupied(ROccupiedEntry<'a, K, V>),
    Vacant(RVacantEntry<'a, K, V>),
}

A handle into an entry in a map, which is either vacant or occupied.

Variants

Occupied(ROccupiedEntry<'a, K, V>)
Vacant(RVacantEntry<'a, K, V>)

Implementations

impl<'a, K, V> REntry<'a, K, V>[src]

pub fn get(&self) -> Option<&V>[src]

Returns a reference to the value in the entry.

Example

use abi_stable::std_types::RHashMap;

let mut map:RHashMap<u32,u32>=vec![(1,100)].into_iter().collect();

assert_eq!(map.entry(0).get(),None);
assert_eq!(map.entry(1).get(),Some(&100));

pub fn get_mut(&mut self) -> Option<&mut V>[src]

Returns a mutable reference to the value in the entry.

Example

use abi_stable::std_types::RHashMap;

let mut map:RHashMap<u32,u32>=vec![(1,100)].into_iter().collect();

assert_eq!(map.entry(0).get_mut(),None);
assert_eq!(map.entry(1).get_mut(),Some(&mut 100));

pub fn or_insert(self, default: V) -> &'a mut V[src]

Inserts default as the value in the entry if it wasn't occupied, returning a mutable reference to the value in the entry.

Example

use abi_stable::std_types::RHashMap;

let mut map=RHashMap::<u32,u32>::new();

assert_eq!(map.entry(0).or_insert(100),&mut 100);

assert_eq!(map.entry(0).or_insert(400),&mut 100);

pub fn or_insert_with<F>(self, default: F) -> &'a mut V where
    F: FnOnce() -> V, 
[src]

Inserts default() as the value in the entry if it wasn't occupied, returning a mutable reference to the value in the entry.

Example

use abi_stable::std_types::{RHashMap,RString};

let mut map=RHashMap::<u32,RString>::new();

assert_eq!(
    map.entry(0).or_insert_with(|| "foo".into() ),
    &mut RString::from("foo")
);

assert_eq!(
    map.entry(0).or_insert_with(|| "bar".into() ),
    &mut RString::from("foo")
);

pub fn key(&self) -> &K[src]

Gets the key of the entry.

Example

use abi_stable::std_types::{RHashMap,RString};

let mut map=RHashMap::<RString,RString>::new();
map.insert("foo".into(),"bar".into());

assert_eq!(
    map.entry("foo".into()).key(),
    &RString::from("foo")
);

pub fn and_modify<F>(self, f: F) -> Self where
    F: FnOnce(&mut V), 
[src]

Allows mutating an occupied entry before doing other operations.

This is a no-op on a vacant entry.

Example

use abi_stable::std_types::{RHashMap,RString};

let mut map=RHashMap::<RString,RString>::new();
map.insert("foo".into(),"bar".into());

assert_eq!(
    map.entry("foo".into())
       .and_modify(|x| x.push_str("hoo") )
       .get(),
    Some(&RString::from("barhoo"))
);

pub fn or_default(self) -> &'a mut V where
    V: Default
[src]

Inserts the V::default() value in the entry if it wasn't occupied, returning a mutable reference to the value in the entry.

Example

use abi_stable::std_types::RHashMap;

let mut map=RHashMap::<u32,u32>::new();

assert_eq!(map.entry(0).or_insert(100),&mut 100);
assert_eq!(map.entry(0).or_default(),&mut 100);

assert_eq!(map.entry(1).or_default(),&mut 0);

Trait Implementations

impl<K, V> Debug for REntry<'_, K, V> where
    K: Debug,
    V: Debug
[src]

impl<'a, K, V> GetStaticEquivalent_ for REntry<'a, K, V> where
    K: __StableAbi,
    V: __StableAbi,
    K: 'a,
    V: 'a, 
[src]

type StaticEquivalent = _static_REntry<'static, __GetStaticEquivalent<K>, __GetStaticEquivalent<V>>

impl<'a, K, V> StableAbi for REntry<'a, K, V> where
    K: __StableAbi,
    V: __StableAbi,
    K: 'a,
    V: 'a, 
[src]

type IsNonZeroType = False

Whether this type has a single invalid bit-pattern. Read more

Auto Trait Implementations

impl<'a, K, V> RefUnwindSafe for REntry<'a, K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<'a, K, V> Send for REntry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Sync for REntry<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Unpin for REntry<'a, K, V> where
    K: Unpin
[src]

impl<'a, K, V> !UnwindSafe for REntry<'a, K, V>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> GetWithMetadata for T[src]

type ForSelf = WithMetadata_<T, T>

This is always WithMetadata_<Self, Self>

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SelfOps for T where
    T: ?Sized
[src]

impl<This> TransmuteElement for This where
    This: ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> TypeIdentity for T where
    T: ?Sized
[src]

type Type = T

The same type as Self. Read more