[−][src]Struct obj_pool::ObjId
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(&self) -> 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]
impl Hash for ObjId[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<T> Index<ObjId> for ObjPool<T>[src]
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.
fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl Noned for ObjId[src]
impl OptEq for ObjId[src]
Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,