pub struct EntityMatch<I> {
pub key: PredictionKey,
pub temporary_entity: I,
pub authoritative_entity: I,
pub age_ticks: u64,
}Expand description
Successful mapping from temporary entity identity to authoritative identity.
Fields§
§key: PredictionKeyMatched prediction key.
temporary_entity: ITemporary client entity to replace or merge.
Authoritative server entity identity.
age_ticks: u64Ticks elapsed before the match arrived.
Trait Implementations§
Source§impl<I: Clone> Clone for EntityMatch<I>
impl<I: Clone> Clone for EntityMatch<I>
Source§fn clone(&self) -> EntityMatch<I>
fn clone(&self) -> EntityMatch<I>
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<I: Debug> Debug for EntityMatch<I>
impl<I: Debug> Debug for EntityMatch<I>
impl<I: Eq> Eq for EntityMatch<I>
Source§impl<I: PartialEq> PartialEq for EntityMatch<I>
impl<I: PartialEq> PartialEq for EntityMatch<I>
impl<I: PartialEq> StructuralPartialEq for EntityMatch<I>
Auto Trait Implementations§
impl<I> Freeze for EntityMatch<I>where
I: Freeze,
impl<I> RefUnwindSafe for EntityMatch<I>where
I: RefUnwindSafe,
impl<I> Send for EntityMatch<I>where
I: Send,
impl<I> Sync for EntityMatch<I>where
I: Sync,
impl<I> Unpin for EntityMatch<I>where
I: Unpin,
impl<I> UnsafeUnpin for EntityMatch<I>where
I: UnsafeUnpin,
impl<I> UnwindSafe for EntityMatch<I>where
I: UnwindSafe,
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