pub struct ParserCacheStats {
pub v9: CacheStats,
pub ipfix: CacheStats,
}Expand description
Combined cache statistics for both V9 and IPFIX template caches.
This struct provides named fields instead of positional tuples, making it clear which stats belong to V9 vs IPFIX.
Fields§
§v9: CacheStatsV9 template cache statistics
ipfix: CacheStatsIPFIX template cache statistics
Trait Implementations§
Source§impl Clone for ParserCacheStats
impl Clone for ParserCacheStats
Source§fn clone(&self) -> ParserCacheStats
fn clone(&self) -> ParserCacheStats
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 ParserCacheStats
impl RefUnwindSafe for ParserCacheStats
impl Send for ParserCacheStats
impl Sync for ParserCacheStats
impl Unpin for ParserCacheStats
impl UnwindSafe for ParserCacheStats
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