pub struct PerformanceLog {
pub time_stamp: i32,
pub user_agent: String,
pub flash_version: String,
pub operating_system: String,
pub _unknown1: String,
pub is_debugger: bool,
pub total_memory: i32,
pub _unknown2: i32,
pub garbage_collection_count: i32,
pub average_update_interval: i32,
pub update_count: i32,
}
Fields§
§time_stamp: i32
§user_agent: String
§flash_version: String
§operating_system: String
§_unknown1: String
§is_debugger: bool
§total_memory: i32
§_unknown2: i32
§garbage_collection_count: i32
§average_update_interval: i32
§update_count: i32
Trait Implementations§
source§impl BaseParser for PerformanceLog
impl BaseParser for PerformanceLog
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 PerformanceLog
impl Clone for PerformanceLog
source§fn clone(&self) -> PerformanceLog
fn clone(&self) -> PerformanceLog
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 PerformanceLog
impl Debug for PerformanceLog
source§impl Default for PerformanceLog
impl Default for PerformanceLog
source§fn default() -> PerformanceLog
fn default() -> PerformanceLog
Returns the “default value” for a type. Read more
source§impl PacketVariable for PerformanceLog
impl PacketVariable for PerformanceLog
source§impl PartialEq<PerformanceLog> for PerformanceLog
impl PartialEq<PerformanceLog> for PerformanceLog
source§fn eq(&self, other: &PerformanceLog) -> bool
fn eq(&self, other: &PerformanceLog) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PerformanceLog
Auto Trait Implementations§
impl RefUnwindSafe for PerformanceLog
impl Send for PerformanceLog
impl Sync for PerformanceLog
impl Unpin for PerformanceLog
impl UnwindSafe for PerformanceLog
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