#[repr(C)]pub struct EcsMetaType {
pub kind: ecs_type_kind_t,
pub existing: bool,
pub partial: bool,
}Expand description
Component that is automatically added to every type with the right kind.
Fields§
§kind: ecs_type_kind_t§existing: bool< Did the type exist or is it populated from reflection
partial: bool< Is the reflection data a partial type description
Trait Implementations§
Source§impl Clone for EcsMetaType
impl Clone for EcsMetaType
Source§fn clone(&self) -> EcsMetaType
fn clone(&self) -> EcsMetaType
Returns a duplicate 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 EcsMetaType
impl Debug for EcsMetaType
impl Copy for EcsMetaType
Auto Trait Implementations§
impl Freeze for EcsMetaType
impl RefUnwindSafe for EcsMetaType
impl Send for EcsMetaType
impl Sync for EcsMetaType
impl Unpin for EcsMetaType
impl UnwindSafe for EcsMetaType
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