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