pub struct KernelEventRecord {
pub event_id: String,
pub occurred_at: SystemTime,
pub event: KernelEvent,
}Fields§
§event_id: String§occurred_at: SystemTime§event: KernelEventTrait Implementations§
Source§impl Clone for KernelEventRecord
impl Clone for KernelEventRecord
Source§fn clone(&self) -> KernelEventRecord
fn clone(&self) -> KernelEventRecord
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 KernelEventRecord
impl Debug for KernelEventRecord
Source§impl<'de> Deserialize<'de> for KernelEventRecord
impl<'de> Deserialize<'de> for KernelEventRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<KernelEventRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<KernelEventRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KernelEventRecord
impl PartialEq for KernelEventRecord
Source§fn eq(&self, other: &KernelEventRecord) -> bool
fn eq(&self, other: &KernelEventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KernelEventRecord
impl Serialize for KernelEventRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for KernelEventRecord
Auto Trait Implementations§
impl Freeze for KernelEventRecord
impl RefUnwindSafe for KernelEventRecord
impl Send for KernelEventRecord
impl Sync for KernelEventRecord
impl Unpin for KernelEventRecord
impl UnsafeUnpin for KernelEventRecord
impl UnwindSafe for KernelEventRecord
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