pub struct EntityGroup {
pub entity: Rc<Entity>,
pub id: Id,
pub name: String,
}Expand description
A trace group used to associate related activities.
Fields§
§entity: Rc<Entity>Parent entity that owns this group.
id: IdUnique simulation identifier used for trace events.
name: StringName of this group.
Implementations§
Trait Implementations§
Source§impl Drop for EntityGroup
impl Drop for EntityGroup
Auto Trait Implementations§
impl !RefUnwindSafe for EntityGroup
impl !Send for EntityGroup
impl !Sync for EntityGroup
impl !UnwindSafe for EntityGroup
impl Freeze for EntityGroup
impl Unpin for EntityGroup
impl UnsafeUnpin for EntityGroup
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