pub struct ClientTransportVisitReport {
pub packets_received: usize,
pub bytes_received: usize,
pub command_acks_received: usize,
pub replication_frames_received: usize,
pub barrier_frames_received: usize,
pub entities_received: usize,
pub components_received: usize,
}Expand description
Fixed-size result of visiting client-bound transport frames.
Fields§
§packets_received: usizePackets consumed from transport.
bytes_received: usizeBytes consumed from transport.
command_acks_received: usizeCommand acknowledgements decoded and accepted.
replication_frames_received: usizeReplication frames decoded and accepted.
barrier_frames_received: usizeBarrier frames decoded and accepted.
entities_received: usizeEntity deltas visited in replication frames.
components_received: usizeComponent deltas visited in replication frames.
Trait Implementations§
Source§impl Clone for ClientTransportVisitReport
impl Clone for ClientTransportVisitReport
Source§fn clone(&self) -> ClientTransportVisitReport
fn clone(&self) -> ClientTransportVisitReport
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 ClientTransportVisitReport
Source§impl Debug for ClientTransportVisitReport
impl Debug for ClientTransportVisitReport
Source§impl Default for ClientTransportVisitReport
impl Default for ClientTransportVisitReport
Source§fn default() -> ClientTransportVisitReport
fn default() -> ClientTransportVisitReport
Returns the “default value” for a type. Read more
impl Eq for ClientTransportVisitReport
impl StructuralPartialEq for ClientTransportVisitReport
Auto Trait Implementations§
impl Freeze for ClientTransportVisitReport
impl RefUnwindSafe for ClientTransportVisitReport
impl Send for ClientTransportVisitReport
impl Sync for ClientTransportVisitReport
impl Unpin for ClientTransportVisitReport
impl UnsafeUnpin for ClientTransportVisitReport
impl UnwindSafe for ClientTransportVisitReport
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