Struct parse_layer7::Layer7Infos
source · pub struct Layer7Infos {
pub layer_7_protocol: String,
pub layer_7_protocol_infos: Option<Layer7Info>,
}Expand description
Layer7Infos contains information about the layer 7 protocol and its parsed data.
Fields§
§layer_7_protocol: StringThe name of the layer 7 protocol (e.g., “TLS”, “DNS”, “DHCP”).
layer_7_protocol_infos: Option<Layer7Info>The parsed information of the layer 7 protocol.
Trait Implementations§
source§impl Debug for Layer7Infos
impl Debug for Layer7Infos
Auto Trait Implementations§
impl Freeze for Layer7Infos
impl RefUnwindSafe for Layer7Infos
impl Send for Layer7Infos
impl Sync for Layer7Infos
impl Unpin for Layer7Infos
impl UnwindSafe for Layer7Infos
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