pub enum AdditionalInfos {
RRCInfos(RRCInfos),
NASInfos(NASInfos),
NGAPInfos(NGAPInfos),
GTPUInfos(GTPUInfos),
PHYInfos(PHYInfos),
None,
}Expand description
Data structure to store custom messages (from the amarisoft API)
Variants§
RRCInfos(RRCInfos)
RRC message
NASInfos(NASInfos)
NAS message
NGAPInfos(NGAPInfos)
NGAP message
GTPUInfos(GTPUInfos)
GTPU message
PHYInfos(PHYInfos)
PHY layer message (PDSCH/PUSCH)
None
No additional info (for simple log entries like MAC, RLC, etc.)
Implementations§
Source§impl AdditionalInfos
impl AdditionalInfos
Sourcepub fn get_direction(&self) -> Option<Direction>
pub fn get_direction(&self) -> Option<Direction>
Get direction from additional infos
Sourcepub fn get_message_name(&self) -> Option<String>
pub fn get_message_name(&self) -> Option<String>
Get message name from additional infos
Trait Implementations§
Source§impl Clone for AdditionalInfos
impl Clone for AdditionalInfos
Source§fn clone(&self) -> AdditionalInfos
fn clone(&self) -> AdditionalInfos
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 moreAuto Trait Implementations§
impl Freeze for AdditionalInfos
impl RefUnwindSafe for AdditionalInfos
impl Send for AdditionalInfos
impl Sync for AdditionalInfos
impl Unpin for AdditionalInfos
impl UnwindSafe for AdditionalInfos
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