pub struct ReplicationTrackKey {
pub client_id: ClientId,
pub entity: EntityHandle,
}Expand description
Per-client/entity replication tracking key.
Fields§
§client_id: ClientIdClient that received the entity update.
entity: EntityHandleStation-local entity handle selected by the planner.
Trait Implementations§
Source§impl Clone for ReplicationTrackKey
impl Clone for ReplicationTrackKey
Source§fn clone(&self) -> ReplicationTrackKey
fn clone(&self) -> ReplicationTrackKey
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 moreimpl Copy for ReplicationTrackKey
Source§impl Debug for ReplicationTrackKey
impl Debug for ReplicationTrackKey
impl Eq for ReplicationTrackKey
Source§impl Hash for ReplicationTrackKey
impl Hash for ReplicationTrackKey
Source§impl Ord for ReplicationTrackKey
impl Ord for ReplicationTrackKey
Source§fn cmp(&self, other: &ReplicationTrackKey) -> Ordering
fn cmp(&self, other: &ReplicationTrackKey) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReplicationTrackKey
impl PartialEq for ReplicationTrackKey
Source§impl PartialOrd for ReplicationTrackKey
impl PartialOrd for ReplicationTrackKey
impl StructuralPartialEq for ReplicationTrackKey
Auto Trait Implementations§
impl Freeze for ReplicationTrackKey
impl RefUnwindSafe for ReplicationTrackKey
impl Send for ReplicationTrackKey
impl Sync for ReplicationTrackKey
impl Unpin for ReplicationTrackKey
impl UnsafeUnpin for ReplicationTrackKey
impl UnwindSafe for ReplicationTrackKey
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