pub struct GTPUInfos {
pub direction: Direction,
pub message_type: String,
pub connection_info: Option<String>,
}Expand description
Data structure to store the GTPU message type
Fields§
§direction: DirectionDirection of the message (TO/FROM)
message_type: StringMessage type (e.g., “G-PDU”, “Echo Request”)
connection_info: Option<String>Connection info (e.g., “127.0.1.100:2152”)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GTPUInfos
impl RefUnwindSafe for GTPUInfos
impl Send for GTPUInfos
impl Sync for GTPUInfos
impl Unpin for GTPUInfos
impl UnwindSafe for GTPUInfos
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