Struct HandleManager

Source
pub struct HandleManager { /* private fields */ }

Implementations§

Source§

impl HandleManager

Source

pub fn new() -> Self

Creates a new handle manager with some default settings. You very likely want to change these to suit your use case.

Source

pub fn with_alloc_policy(self, policy: AllocPolicy) -> Self

Changes the allocation policy of handles. Panics if handles have already been issued.

Source

pub fn with_release_policy(self, policy: ReleasePolicy) -> Self

Changes the release policy of this handle manager. Panics if handles have already been issued.

Source

pub fn next(&mut self) -> Option<usize>

Retrieve a handle from the manager. Either generates a new ID if one cannot be recycled, or recycles one which was previously valid.

Source

pub fn is_used(&self, id: usize) -> bool

Checks if a given ID is currently known to the handle manager. Note that if you are using a policy which does not track freed values, this can only check if a handle has never been valid to this point.

Source

pub fn release(&mut self, handle: usize) -> Result<(), ()>

Returns a handle to the handle manager. This can fail if the handle was not valid or is currently in a free list.

Trait Implementations§

Source§

impl Default for HandleManager

Source§

fn default() -> Self

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

Auto Trait Implementations§

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.