pub struct ClientDelta {
pub creates: Vec<EntitySnapshot>,
pub destroys: Vec<EntityId>,
pub updates: Vec<DeltaUpdateEntity>,
}Expand description
Per-client delta output.
Fields§
§creates: Vec<EntitySnapshot>§destroys: Vec<EntityId>§updates: Vec<DeltaUpdateEntity>Implementations§
Trait Implementations§
Source§impl Clone for ClientDelta
impl Clone for ClientDelta
Source§fn clone(&self) -> ClientDelta
fn clone(&self) -> ClientDelta
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 ClientDelta
impl Debug for ClientDelta
Source§impl PartialEq for ClientDelta
impl PartialEq for ClientDelta
impl Eq for ClientDelta
impl StructuralPartialEq for ClientDelta
Auto Trait Implementations§
impl Freeze for ClientDelta
impl RefUnwindSafe for ClientDelta
impl Send for ClientDelta
impl Sync for ClientDelta
impl Unpin for ClientDelta
impl UnwindSafe for ClientDelta
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