[][src]Struct obj_pool::ObjId

pub struct ObjId(pub u32);

An id of the object in an ObjPool.

In release it is basically just an index in the underlying vector, but in debug it's an index + ObjPool-specific offset. This is made to be able to check ObjId if it's from the same ObjPool we are trying to get an object from.

Methods

impl ObjId[src]

pub fn into_index(self, offset: u32) -> u32[src]

pub fn from_index(index: u32, offset: u32) -> ObjId[src]

Trait Implementations

impl Clone for ObjId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<ObjId> for ObjId[src]

impl Eq for ObjId[src]

impl Copy for ObjId[src]

impl From<u32> for ObjId[src]

impl Deref for ObjId[src]

type Target = u32

The resulting type after dereferencing.

impl Hash for ObjId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T> Index<ObjId> for ObjPool<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<ObjId> for ObjPool<T>[src]

impl Debug for ObjId[src]

impl Display for ObjId[src]

impl FromStr for ObjId[src]

type Err = ParseIntError

The associated error which can be returned from parsing.

impl Noned for ObjId[src]

impl OptEq for ObjId[src]

Auto Trait Implementations

impl Send for ObjId

impl Sync for ObjId

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]