pub struct ReplicationTransportStats {
pub viewers_planned: usize,
pub frames_skipped_empty: usize,
pub frames_sent: usize,
pub bytes_sent: usize,
pub packet_capacity_hint_bytes: usize,
pub entities_selected: usize,
pub entities_skipped_by_budget: usize,
pub entities_skipped_by_cadence: usize,
pub entities_encoded: usize,
pub components_encoded: usize,
pub entities_skipped_by_frame_bytes: usize,
}Expand description
Client replication transport bridge statistics.
Fields§
§viewers_planned: usizeViewer queries planned.
frames_skipped_empty: usizeFrames skipped because they had no encoded entity deltas.
frames_sent: usizeFrames encoded and sent to client transport.
bytes_sent: usizeBytes sent through client transport.
packet_capacity_hint_bytes: usizeInitial packet byte capacity requested from bounded wire hints.
entities_selected: usizeEntities selected by AOI planning.
entities_skipped_by_budget: usizeEntities skipped by replication planner budget.
entities_skipped_by_cadence: usizeEntities skipped by replication planner cadence.
entities_encoded: usizeEntity deltas encoded into replication frames.
components_encoded: usizeComponent deltas encoded into replication frames.
entities_skipped_by_frame_bytes: usizeEntities rolled back because the concrete frame byte budget filled.
Trait Implementations§
Source§impl Clone for ReplicationTransportStats
impl Clone for ReplicationTransportStats
Source§fn clone(&self) -> ReplicationTransportStats
fn clone(&self) -> ReplicationTransportStats
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 ReplicationTransportStats
Source§impl Debug for ReplicationTransportStats
impl Debug for ReplicationTransportStats
Source§impl Default for ReplicationTransportStats
impl Default for ReplicationTransportStats
Source§fn default() -> ReplicationTransportStats
fn default() -> ReplicationTransportStats
Returns the “default value” for a type. Read more
impl Eq for ReplicationTransportStats
impl StructuralPartialEq for ReplicationTransportStats
Auto Trait Implementations§
impl Freeze for ReplicationTransportStats
impl RefUnwindSafe for ReplicationTransportStats
impl Send for ReplicationTransportStats
impl Sync for ReplicationTransportStats
impl Unpin for ReplicationTransportStats
impl UnsafeUnpin for ReplicationTransportStats
impl UnwindSafe for ReplicationTransportStats
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