pub struct DynamicType(/* private fields */);
Expand description
An opaque reference to a dynamic type.
Implementations§
Source§impl DynamicType
impl DynamicType
Sourcepub fn as_bits(self) -> u32
pub fn as_bits(self) -> u32
Return the raw bit encoding for this instance.
Warning: the raw bit encoding is opaque and has no
guaranteed correspondence to the entity’s index. It encodes the
entire state of this index value: either a valid index or an
invalid-index sentinel. The value returned by this method should
only be passed to from_bits
.
Sourcepub fn from_bits(x: u32) -> Self
pub fn from_bits(x: u32) -> Self
Create a new instance from the raw bit encoding.
Warning: the raw bit encoding is opaque and has no
guaranteed correspondence to the entity’s index. It encodes the
entire state of this index value: either a valid index or an
invalid-index sentinel. The value returned by this method should
only be given bits from as_bits
.
Source§impl DynamicType
impl DynamicType
Sourcepub fn with_number(n: u32) -> Option<Self>
pub fn with_number(n: u32) -> Option<Self>
Create a new dynamic type reference from its number.
This method is for use by the parser.
Trait Implementations§
Source§impl Clone for DynamicType
impl Clone for DynamicType
Source§fn clone(&self) -> DynamicType
fn clone(&self) -> DynamicType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DynamicType
impl Debug for DynamicType
Source§impl Display for DynamicType
impl Display for DynamicType
Source§impl EntityRef for DynamicType
impl EntityRef for DynamicType
Source§impl From<DynamicType> for AnyEntity
impl From<DynamicType> for AnyEntity
Source§fn from(r: DynamicType) -> Self
fn from(r: DynamicType) -> Self
Source§impl Hash for DynamicType
impl Hash for DynamicType
Source§impl Ord for DynamicType
impl Ord for DynamicType
Source§fn cmp(&self, other: &DynamicType) -> Ordering
fn cmp(&self, other: &DynamicType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for DynamicType
impl PartialEq for DynamicType
Source§impl PartialOrd for DynamicType
impl PartialOrd for DynamicType
Source§impl ReservedValue for DynamicType
impl ReservedValue for DynamicType
Source§fn reserved_value() -> DynamicType
fn reserved_value() -> DynamicType
Source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
impl Copy for DynamicType
impl Eq for DynamicType
impl StructuralPartialEq for DynamicType
Auto Trait Implementations§
impl Freeze for DynamicType
impl RefUnwindSafe for DynamicType
impl Send for DynamicType
impl Sync for DynamicType
impl Unpin for DynamicType
impl UnwindSafe for DynamicType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.