[−][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 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]
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<T> Index<ObjId> for ObjPool<T>[src]
impl<T> IndexMut<ObjId> for ObjPool<T>[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,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> 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, U> TryInto<U> 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<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,