pub struct EventLogSummary {
pub count: usize,
pub kinds: BTreeMap<String, usize>,
pub first_timestamp: Option<String>,
pub last_timestamp: Option<String>,
pub duplicate_ids: Vec<String>,
pub orphan_targets: Vec<String>,
}Fields§
§count: usize§kinds: BTreeMap<String, usize>§first_timestamp: Option<String>§last_timestamp: Option<String>§duplicate_ids: Vec<String>§orphan_targets: Vec<String>Trait Implementations§
Source§impl Clone for EventLogSummary
impl Clone for EventLogSummary
Source§fn clone(&self) -> EventLogSummary
fn clone(&self) -> EventLogSummary
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 EventLogSummary
impl Debug for EventLogSummary
Source§impl<'de> Deserialize<'de> for EventLogSummary
impl<'de> Deserialize<'de> for EventLogSummary
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
Auto Trait Implementations§
impl Freeze for EventLogSummary
impl RefUnwindSafe for EventLogSummary
impl Send for EventLogSummary
impl Sync for EventLogSummary
impl Unpin for EventLogSummary
impl UnsafeUnpin for EventLogSummary
impl UnwindSafe for EventLogSummary
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