pub struct ReplicationReceiveStats {
pub packets_received: usize,
pub bytes_received: usize,
pub frames_received: usize,
pub frames_rejected_decode: usize,
pub frames_rejected_unexpected: usize,
pub frames_rejected_source: usize,
pub frames_rejected_target: usize,
pub entities_received: usize,
pub components_received: usize,
}Expand description
Replication receive bridge statistics.
Fields§
§packets_received: usizePackets consumed from client transport.
bytes_received: usizeBytes consumed from client transport.
frames_received: usizeReplication frames decoded and accepted.
frames_rejected_decode: usizePackets rejected by wire decoding.
frames_rejected_unexpected: usizePackets rejected because they were not replication frames.
frames_rejected_source: usizePackets rejected because the transport source did not match.
frames_rejected_target: usizePackets rejected because the frame target did not match this client.
entities_received: usizeEntity deltas received.
components_received: usizeComponent deltas received.
Trait Implementations§
Source§impl Clone for ReplicationReceiveStats
impl Clone for ReplicationReceiveStats
Source§fn clone(&self) -> ReplicationReceiveStats
fn clone(&self) -> ReplicationReceiveStats
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 ReplicationReceiveStats
Source§impl Debug for ReplicationReceiveStats
impl Debug for ReplicationReceiveStats
Source§impl Default for ReplicationReceiveStats
impl Default for ReplicationReceiveStats
Source§fn default() -> ReplicationReceiveStats
fn default() -> ReplicationReceiveStats
Returns the “default value” for a type. Read more
impl Eq for ReplicationReceiveStats
Source§impl PartialEq for ReplicationReceiveStats
impl PartialEq for ReplicationReceiveStats
impl StructuralPartialEq for ReplicationReceiveStats
Auto Trait Implementations§
impl Freeze for ReplicationReceiveStats
impl RefUnwindSafe for ReplicationReceiveStats
impl Send for ReplicationReceiveStats
impl Sync for ReplicationReceiveStats
impl Unpin for ReplicationReceiveStats
impl UnsafeUnpin for ReplicationReceiveStats
impl UnwindSafe for ReplicationReceiveStats
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