pub struct DebugEntity {
pub name: String,
pub id: String,
pub entity_id: u64,
pub transform: Option<DebugTransform>,
pub collider: Option<DebugCollider>,
}
Fields§
§name: String
§id: String
§entity_id: u64
§transform: Option<DebugTransform>
§collider: Option<DebugCollider>
Trait Implementations§
Source§impl Clone for DebugEntity
impl Clone for DebugEntity
Source§fn clone(&self) -> DebugEntity
fn clone(&self) -> DebugEntity
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 DebugEntity
impl Debug for DebugEntity
Source§impl Default for DebugEntity
impl Default for DebugEntity
Source§fn default() -> DebugEntity
fn default() -> DebugEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugEntity
impl<'de> Deserialize<'de> for DebugEntity
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
Source§impl PartialEq for DebugEntity
impl PartialEq for DebugEntity
Source§impl Serialize for DebugEntity
impl Serialize for DebugEntity
impl StructuralPartialEq for DebugEntity
Auto Trait Implementations§
impl Freeze for DebugEntity
impl RefUnwindSafe for DebugEntity
impl Send for DebugEntity
impl Sync for DebugEntity
impl Unpin for DebugEntity
impl UnwindSafe for DebugEntity
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