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 duplicate 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 for LatencyPingReport
impl PartialEq for LatencyPingReport
impl StructuralPartialEq for LatencyPingReport
Auto Trait Implementations§
impl Freeze for LatencyPingReport
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