pub struct NGAPInfos {
pub direction: Direction,
pub message_type: String,
pub connection_info: Option<String>,
}Expand description
Data structure to store the NGAP message type
Fields§
§direction: DirectionDirection of the message (TO/FROM) Check direction NGAP: Currently TO = BST -> CN, FROM = CN -> BST
message_type: StringMessage type (e.g., “UE context release complete”, “Initial context setup request”)
connection_info: Option<String>Connection info (e.g., “127.0.1.100:38412”)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NGAPInfos
impl RefUnwindSafe for NGAPInfos
impl Send for NGAPInfos
impl Sync for NGAPInfos
impl Unpin for NGAPInfos
impl UnwindSafe for NGAPInfos
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