pub struct PacketInfoManager { /* private fields */ }
Implementations§
Source§impl PacketInfoManager
impl PacketInfoManager
pub fn get_all_packet_info_from_header_id( &mut self, direction: HDirection, header_id: i32, ) -> Vec<PacketInfo>
pub fn get_all_packet_info_from_hash( &mut self, direction: HDirection, hash: String, ) -> Vec<PacketInfo>
pub fn get_all_packet_info_from_name( &mut self, direction: HDirection, name: String, ) -> Vec<PacketInfo>
pub fn get_packet_info_from_header_id( &mut self, direction: HDirection, header_id: i32, ) -> Option<PacketInfo>
pub fn get_packet_info_from_hash( &mut self, direction: HDirection, hash: String, ) -> Option<PacketInfo>
pub fn get_packet_info_from_name( &mut self, direction: HDirection, name: String, ) -> Option<PacketInfo>
pub fn get_packet_info_list(&mut self) -> Vec<PacketInfo>
Trait Implementations§
Source§impl Clone for PacketInfoManager
impl Clone for PacketInfoManager
Source§fn clone(&self) -> PacketInfoManager
fn clone(&self) -> PacketInfoManager
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 PacketInfoManager
impl Debug for PacketInfoManager
Source§impl Default for PacketInfoManager
impl Default for PacketInfoManager
Source§fn default() -> PacketInfoManager
fn default() -> PacketInfoManager
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PacketInfoManager
impl RefUnwindSafe for PacketInfoManager
impl Send for PacketInfoManager
impl Sync for PacketInfoManager
impl Unpin for PacketInfoManager
impl UnwindSafe for PacketInfoManager
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