pub struct DeltaDecoded {
pub tick: SnapshotTick,
pub baseline_tick: SnapshotTick,
pub destroys: Vec<EntityId>,
pub creates: Vec<EntitySnapshot>,
pub updates: Vec<DeltaUpdateEntity>,
}Fields§
§tick: SnapshotTick§baseline_tick: SnapshotTick§destroys: Vec<EntityId>§creates: Vec<EntitySnapshot>§updates: Vec<DeltaUpdateEntity>Trait Implementations§
Source§impl Clone for DeltaDecoded
impl Clone for DeltaDecoded
Source§fn clone(&self) -> DeltaDecoded
fn clone(&self) -> DeltaDecoded
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 DeltaDecoded
impl Debug for DeltaDecoded
Source§impl PartialEq for DeltaDecoded
impl PartialEq for DeltaDecoded
impl Eq for DeltaDecoded
impl StructuralPartialEq for DeltaDecoded
Auto Trait Implementations§
impl Freeze for DeltaDecoded
impl RefUnwindSafe for DeltaDecoded
impl Send for DeltaDecoded
impl Sync for DeltaDecoded
impl Unpin for DeltaDecoded
impl UnwindSafe for DeltaDecoded
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