HandleMap

Struct HandleMap 

Source
pub struct HandleMap<T> { /* private fields */ }
Expand description

HandleMap is a collection type which can hold any type of value, and offers a stable handle which can be used to retrieve it on insertion. These handles offer methods for converting to and from 64 bit integers, meaning they’re very easy to pass over the FFI (they also implement IntoFfi for the same purpose).

See the module level docs for more information.

Note: In FFI code, most usage of HandleMap will be done through the ConcurrentHandleMap type, which is a thin wrapper around a RwLock<HandleMap<Mutex<T>>>.

Implementations§

Source§

impl<T> HandleMap<T>

Source

pub fn new() -> Self

Create a new HandleMap with the default capacity.

Source

pub fn new_with_capacity(request: usize) -> Self

Allocate a new HandleMap. Note that the actual capacity may be larger than the requested value.

Panics if request is greater than handle_map::MAX_CAPACITY

Source

pub fn len(&self) -> usize

Get the number of entries in the HandleMap.

Source

pub fn is_empty(&self) -> bool

Returns true if the HandleMap is empty.

Source

pub fn capacity(&self) -> usize

Returns the number of slots allocated in the handle map.

Source

pub fn insert(&mut self, v: T) -> Handle

Insert an item into the map, and return a handle to it.

Source

pub fn delete(&mut self, h: Handle) -> Result<(), HandleError>

Delete an item from the HandleMap.

Source

pub fn remove(&mut self, h: Handle) -> Result<T, HandleError>

Remove an item from the HandleMap, returning the old value.

Source

pub fn get(&self, h: Handle) -> Result<&T, HandleError>

Get a reference to the item referenced by the handle, or return a HandleError describing the problem.

Source

pub fn get_mut(&mut self, h: Handle) -> Result<&mut T, HandleError>

Get a mut reference to the item referenced by the handle, or return a HandleError describing the problem.

Trait Implementations§

Source§

impl<T: Clone> Clone for HandleMap<T>

Source§

fn clone(&self) -> HandleMap<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for HandleMap<T>

Source§

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

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

impl<T> Default for HandleMap<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> Index<Handle> for HandleMap<T>

Source§

type Output = T

The returned type after indexing.
Source§

fn index(&self, h: Handle) -> &T

Performs the indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

impl<T> Freeze for HandleMap<T>

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for HandleMap<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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.