pub struct ItemLocalId {
private_use_as_methods_instead: u32,
}
Expand description
An ItemLocalId
uniquely identifies something within a given “item-like”.
Fields§
§private_use_as_methods_instead: u32
Implementations§
Source§impl ItemLocalId
impl ItemLocalId
Sourcepub const MAX_AS_U32: u32 = 4_294_967_040u32
pub const MAX_AS_U32: u32 = 4_294_967_040u32
Maximum value the index can take, as a u32
.
Sourcepub const fn from_usize(value: usize) -> Self
pub const fn from_usize(value: usize) -> Self
Sourcepub const unsafe fn from_u32_unchecked(value: u32) -> Self
pub const unsafe fn from_u32_unchecked(value: u32) -> Self
Creates a new index from a given u32
.
§Safety
The provided value must be less than or equal to the maximum value for the newtype. Providing a value outside this range is undefined due to layout restrictions.
Prefer using from_u32
.
Trait Implementations§
Source§impl Add<usize> for ItemLocalId
impl Add<usize> for ItemLocalId
Source§impl Clone for ItemLocalId
impl Clone for ItemLocalId
Source§fn clone(&self) -> ItemLocalId
fn clone(&self) -> ItemLocalId
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ItemLocalId
impl Debug for ItemLocalId
Source§impl From<ItemLocalId> for u32
impl From<ItemLocalId> for u32
Source§fn from(v: ItemLocalId) -> u32
fn from(v: ItemLocalId) -> u32
Converts to this type from the input type.
Source§impl From<ItemLocalId> for usize
impl From<ItemLocalId> for usize
Source§fn from(v: ItemLocalId) -> usize
fn from(v: ItemLocalId) -> usize
Converts to this type from the input type.
Source§impl From<u32> for ItemLocalId
impl From<u32> for ItemLocalId
Source§impl From<usize> for ItemLocalId
impl From<usize> for ItemLocalId
Source§impl Hash for ItemLocalId
impl Hash for ItemLocalId
Source§impl Idx for ItemLocalId
impl Idx for ItemLocalId
Source§impl PartialEq for ItemLocalId
impl PartialEq for ItemLocalId
impl Copy for ItemLocalId
impl Eq for ItemLocalId
impl StructuralPartialEq for ItemLocalId
Auto Trait Implementations§
impl Freeze for ItemLocalId
impl RefUnwindSafe for ItemLocalId
impl Send for ItemLocalId
impl Sync for ItemLocalId
impl Unpin for ItemLocalId
impl UnwindSafe for ItemLocalId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more