escpos_db

Struct OwnedIntMap

source
pub struct OwnedIntMap<T> { /* private fields */ }
Expand description

An owned version of IntMap.

Implementations§

source§

impl<T> OwnedIntMap<T>

source

pub fn insert(&mut self, key: u8, val: T) -> Option<T>

Insert a new entry into the map, returning the previous value at key if it existed.

Methods from Deref<Target = IntMap<T>>§

source

pub fn get(&self, k: u8) -> Option<&T>

Lookup a value by the given key.

source

pub fn iter(&self) -> IntMapIter<'_, T>

Returns an iterator over the entries of this map.

Trait Implementations§

source§

impl<T> Borrow<IntMap<T>> for OwnedIntMap<T>

source§

fn borrow(&self) -> &IntMap<T>

Immutably borrows from an owned value. Read more
source§

impl<T: Debug> Debug for OwnedIntMap<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T> Deref for OwnedIntMap<T>

source§

type Target = IntMap<T>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> Extend<(u8, T)> for OwnedIntMap<T>

source§

fn extend<I: IntoIterator<Item = (u8, T)>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T> FromIterator<(u8, T)> for OwnedIntMap<T>

source§

fn from_iter<I: IntoIterator<Item = (u8, T)>>(iter: I) -> Self

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T> Freeze for OwnedIntMap<T>

§

impl<T> RefUnwindSafe for OwnedIntMap<T>
where T: RefUnwindSafe,

§

impl<T> Send for OwnedIntMap<T>
where T: Send,

§

impl<T> Sync for OwnedIntMap<T>
where T: Sync,

§

impl<T> Unpin for OwnedIntMap<T>
where T: Unpin,

§

impl<T> UnwindSafe for OwnedIntMap<T>
where T: UnwindSafe,

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, 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.