pub struct EntityChangeSet {
pub deleted: Vec<Entity>,
}Expand description
Summarises the final changes made during the lifetime of an entity transaction.
Fields§
§deleted: Vec<Entity>The entities deleted in the transaction.
Auto Trait Implementations§
impl Freeze for EntityChangeSet
impl RefUnwindSafe for EntityChangeSet
impl Send for EntityChangeSet
impl Sync for EntityChangeSet
impl Unpin for EntityChangeSet
impl UnwindSafe for EntityChangeSet
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