pub struct NGAPParser;Expand description
NGAP Parser
Trait Implementations§
Source§impl FileParser for NGAPParser
impl FileParser for NGAPParser
Source§fn parse_additional_infos(
lines: &[String],
) -> Result<AdditionalInfos, ParsingError>
fn parse_additional_infos( lines: &[String], ) -> Result<AdditionalInfos, ParsingError>
Function that parses the first line of a log Read more
Source§impl LayerParser for NGAPParser
impl LayerParser for NGAPParser
Source§fn parse_layer(
header: &ParsedHeader,
data_lines: &[String],
) -> Result<AdditionalInfos, ParsingError>
fn parse_layer( header: &ParsedHeader, data_lines: &[String], ) -> Result<AdditionalInfos, ParsingError>
Parse NGAP payload lines. data_lines[0] = “ID1 ID2 IP:PORT message type” (e.g. “00fc 009a 127.0.1.100:38412 UE context release request”)
Auto Trait Implementations§
impl Freeze for NGAPParser
impl RefUnwindSafe for NGAPParser
impl Send for NGAPParser
impl Sync for NGAPParser
impl Unpin for NGAPParser
impl UnwindSafe for NGAPParser
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