pub struct ProcessorStatistics {
pub rx_bmp_messages: usize,
pub rx_bmp_initiation: usize,
pub rx_bmp_peer_up: usize,
pub rx_bmp_route_monitoring: usize,
pub rx_bmp_route_mirroring: usize,
pub rx_bmp_peer_down: usize,
pub rx_bmp_termination: usize,
pub rx_bmp_stats_report: usize,
}Fields§
§rx_bmp_messages: usize§rx_bmp_initiation: usize§rx_bmp_peer_up: usize§rx_bmp_route_monitoring: usize§rx_bmp_route_mirroring: usize§rx_bmp_peer_down: usize§rx_bmp_termination: usize§rx_bmp_stats_report: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessorStatistics
impl RefUnwindSafe for ProcessorStatistics
impl Send for ProcessorStatistics
impl Sync for ProcessorStatistics
impl Unpin for ProcessorStatistics
impl UnwindSafe for ProcessorStatistics
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more