pub struct EntityMigrationReport {
pub transfer: HandoffTransfer,
pub source_ghost: EntityHandle,
pub target_owner: EntityHandle,
}Expand description
Result of an in-process entity owner migration.
Fields§
§transfer: HandoffTransferTransfer payload used for the migration.
source_ghost: EntityHandleSource-side ghost handle after commit.
target_owner: EntityHandleTarget-side authoritative handle after commit.
Trait Implementations§
Source§impl Clone for EntityMigrationReport
impl Clone for EntityMigrationReport
Source§fn clone(&self) -> EntityMigrationReport
fn clone(&self) -> EntityMigrationReport
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 EntityMigrationReport
impl Debug for EntityMigrationReport
Source§impl PartialEq for EntityMigrationReport
impl PartialEq for EntityMigrationReport
impl StructuralPartialEq for EntityMigrationReport
Auto Trait Implementations§
impl Freeze for EntityMigrationReport
impl RefUnwindSafe for EntityMigrationReport
impl Send for EntityMigrationReport
impl Sync for EntityMigrationReport
impl Unpin for EntityMigrationReport
impl UnsafeUnpin for EntityMigrationReport
impl UnwindSafe for EntityMigrationReport
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