pub struct EventLogStats {
pub events: usize,
pub spans: usize,
pub approx_event_bytes: usize,
pub approx_span_bytes: usize,
}Fields§
§events: usize§spans: usize§approx_event_bytes: usize§approx_span_bytes: usizeTrait Implementations§
Source§impl Clone for EventLogStats
impl Clone for EventLogStats
Source§fn clone(&self) -> EventLogStats
fn clone(&self) -> EventLogStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventLogStats
impl Debug for EventLogStats
Source§impl<'de> Deserialize<'de> for EventLogStats
impl<'de> Deserialize<'de> for EventLogStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EventLogStats
impl PartialEq for EventLogStats
Source§fn eq(&self, other: &EventLogStats) -> bool
fn eq(&self, other: &EventLogStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventLogStats
impl Serialize for EventLogStats
impl Copy for EventLogStats
impl Eq for EventLogStats
impl StructuralPartialEq for EventLogStats
Auto Trait Implementations§
impl Freeze for EventLogStats
impl RefUnwindSafe for EventLogStats
impl Send for EventLogStats
impl Sync for EventLogStats
impl Unpin for EventLogStats
impl UnsafeUnpin for EventLogStats
impl UnwindSafe for EventLogStats
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