[][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 From<u32> for ObjId[src]

impl Clone for ObjId[src]

impl Copy for ObjId[src]

impl Eq for ObjId[src]

impl PartialEq<ObjId> for ObjId[src]

impl Deref for ObjId[src]

type Target = u32

The resulting type after dereferencing.

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<T> Index<ObjId> for ObjPool<T>[src]

type Output = T

The returned type after indexing.

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

impl Hash for ObjId[src]

impl Noned for ObjId[src]

impl OptEq for ObjId[src]

Auto Trait Implementations

impl Send for ObjId

impl Sync for ObjId

impl Unpin for ObjId

impl RefUnwindSafe for ObjId

impl UnwindSafe for ObjId

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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