pub struct LatencyPingReport {
pub sum: i32,
pub average: i32,
pub count: i32,
}
Fields§
§sum: i32
§average: i32
§count: i32
Trait Implementations§
source§impl BaseParser for LatencyPingReport
impl BaseParser for LatencyPingReport
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for LatencyPingReport
impl Clone for LatencyPingReport
source§fn clone(&self) -> LatencyPingReport
fn clone(&self) -> LatencyPingReport
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LatencyPingReport
impl Debug for LatencyPingReport
source§impl Default for LatencyPingReport
impl Default for LatencyPingReport
source§fn default() -> LatencyPingReport
fn default() -> LatencyPingReport
Returns the “default value” for a type. Read more
source§impl PacketVariable for LatencyPingReport
impl PacketVariable for LatencyPingReport
source§impl PartialEq<LatencyPingReport> for LatencyPingReport
impl PartialEq<LatencyPingReport> for LatencyPingReport
source§fn eq(&self, other: &LatencyPingReport) -> bool
fn eq(&self, other: &LatencyPingReport) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LatencyPingReport
Auto Trait Implementations§
impl RefUnwindSafe for LatencyPingReport
impl Send for LatencyPingReport
impl Sync for LatencyPingReport
impl Unpin for LatencyPingReport
impl UnwindSafe for LatencyPingReport
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