pub struct ReplicationFrameBuildStats {
pub planned_entities: usize,
pub encoded_entities: usize,
pub encoded_components: usize,
pub skipped_entities_by_limit: usize,
pub skipped_components_by_limit: usize,
pub skipped_components_by_size: usize,
}Expand description
Frame builder statistics.
Fields§
§planned_entities: usizeEntity handles selected by the replication plan.
encoded_entities: usizeEntity deltas materialized into the frame.
encoded_components: usizeComponent deltas materialized into the frame.
skipped_entities_by_limit: usizeEntity deltas skipped by builder limits.
skipped_components_by_limit: usizeComponent deltas skipped by builder limits.
skipped_components_by_size: usizeComponent payloads skipped because they exceed byte limits.
Trait Implementations§
Source§impl Clone for ReplicationFrameBuildStats
impl Clone for ReplicationFrameBuildStats
Source§fn clone(&self) -> ReplicationFrameBuildStats
fn clone(&self) -> ReplicationFrameBuildStats
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 ReplicationFrameBuildStats
Source§impl Debug for ReplicationFrameBuildStats
impl Debug for ReplicationFrameBuildStats
Source§impl Default for ReplicationFrameBuildStats
impl Default for ReplicationFrameBuildStats
Source§fn default() -> ReplicationFrameBuildStats
fn default() -> ReplicationFrameBuildStats
Returns the “default value” for a type. Read more
impl Eq for ReplicationFrameBuildStats
impl StructuralPartialEq for ReplicationFrameBuildStats
Auto Trait Implementations§
impl Freeze for ReplicationFrameBuildStats
impl RefUnwindSafe for ReplicationFrameBuildStats
impl Send for ReplicationFrameBuildStats
impl Sync for ReplicationFrameBuildStats
impl Unpin for ReplicationFrameBuildStats
impl UnsafeUnpin for ReplicationFrameBuildStats
impl UnwindSafe for ReplicationFrameBuildStats
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