pub struct EntityId_t {
pub entityKey: EntityKey_t,
pub entityKind: u8,
}Fields§
§entityKey: EntityKey_t§entityKind: u8Implementations§
Source§impl EntityId_t
impl EntityId_t
pub fn new(entityKey: EntityKey_t, entityKind: u8) -> Self
pub fn entityKey(&self) -> &EntityKey_t
pub fn set_entityKey(&mut self, value: EntityKey_t)
pub fn entityKind(&self) -> &u8
pub fn set_entityKind(&mut self, value: u8)
Trait Implementations§
Source§impl Clone for EntityId_t
impl Clone for EntityId_t
Source§fn clone(&self) -> EntityId_t
fn clone(&self) -> EntityId_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EntityId_t
impl Debug for EntityId_t
Source§impl<'de> Deserialize<'de> for EntityId_t
impl<'de> Deserialize<'de> for EntityId_t
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EntityId_t
impl RefUnwindSafe for EntityId_t
impl Send for EntityId_t
impl Sync for EntityId_t
impl Unpin for EntityId_t
impl UnsafeUnpin for EntityId_t
impl UnwindSafe for EntityId_t
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