Entry

Enum Entry 

Source
pub enum Entry<'a, K, V, Codec = Default> {
    Occupied(OccupiedEntry<'a, K, V, Codec>),
    Vacant(VacantEntry<'a, K, V, Codec>),
}
👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.
Expand description

A view into a single entry in an observable hash map, which may either be vacant or occupied.

This is returned by ObservableHashMap::entry.

Variants§

§

Occupied(OccupiedEntry<'a, K, V, Codec>)

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

An occupied entry.

§

Vacant(VacantEntry<'a, K, V, Codec>)

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

A vacant entry.

Implementations§

Source§

impl<'a, K, V, Codec> Entry<'a, K, V, Codec>
where K: Clone + RemoteSend, V: Clone + RemoteSend, Codec: Codec,

Source

pub fn or_insert(self, default: V) -> RefMut<'a, K, V, Codec>

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.

Source

pub fn or_insert_with<F: FnOnce() -> V>( self, default: F, ) -> RefMut<'a, K, V, Codec>

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

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.

Source

pub fn or_insert_with_key<F: FnOnce(&K) -> V>( self, default: F, ) -> RefMut<'a, K, V, Codec>

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

Ensures a value is in the entry by inserting the result of the default function with key as argument if empty, and returns a mutable reference to the value in the entry.

Source

pub fn key(&self) -> &K

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

Returns a reference to this entry’s key.

Source

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

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

Provides in-place mutable access to an occupied entry before any potential inserts into the map.

Source§

impl<'a, K, V, Codec> Entry<'a, K, V, Codec>
where K: Clone + RemoteSend, V: Clone + RemoteSend + Default, Codec: Codec,

Source

pub fn or_default(self) -> RefMut<'a, K, V, Codec>

👎Deprecated: remoc-obs has been integrated into remoc as module remoc::robs. Please update your references.

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.

Trait Implementations§

Source§

impl<'a, K: Debug, V: Debug, Codec: Debug> Debug for Entry<'a, K, V, Codec>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, K, V, Codec> Freeze for Entry<'a, K, V, Codec>
where K: Freeze,

§

impl<'a, K, V, Codec = Default> !RefUnwindSafe for Entry<'a, K, V, Codec>

§

impl<'a, K, V, Codec = Default> !Send for Entry<'a, K, V, Codec>

§

impl<'a, K, V, Codec = Default> !Sync for Entry<'a, K, V, Codec>

§

impl<'a, K, V, Codec> Unpin for Entry<'a, K, V, Codec>
where K: Unpin,

§

impl<'a, K, V, Codec = Default> !UnwindSafe for Entry<'a, K, V, Codec>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more