pub struct ManagedRuntimeEventSnapshot {
pub event_id: Option<String>,
pub reason: String,
pub type_: Option<String>,
pub message: String,
pub count: Option<i32>,
pub first_timestamp: Option<DateTime<Utc>>,
pub last_timestamp: Option<DateTime<Utc>>,
pub event_time: Option<DateTime<Utc>>,
pub source: Option<ManagedRuntimeEventSource>,
pub involved_object: Option<ManagedRuntimeEventInvolvedObject>,
pub details: Option<Value>,
pub raw: Option<Value>,
}Fields§
§event_id: Option<String>§reason: String§type_: Option<String>§message: String§count: Option<i32>§first_timestamp: Option<DateTime<Utc>>§last_timestamp: Option<DateTime<Utc>>§event_time: Option<DateTime<Utc>>§source: Option<ManagedRuntimeEventSource>§involved_object: Option<ManagedRuntimeEventInvolvedObject>§details: Option<Value>§raw: Option<Value>Trait Implementations§
Source§impl Clone for ManagedRuntimeEventSnapshot
impl Clone for ManagedRuntimeEventSnapshot
Source§fn clone(&self) -> ManagedRuntimeEventSnapshot
fn clone(&self) -> ManagedRuntimeEventSnapshot
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 ManagedRuntimeEventSnapshot
impl Debug for ManagedRuntimeEventSnapshot
Source§impl<'de> Deserialize<'de> for ManagedRuntimeEventSnapshot
impl<'de> Deserialize<'de> for ManagedRuntimeEventSnapshot
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 ManagedRuntimeEventSnapshot
impl PartialEq for ManagedRuntimeEventSnapshot
Source§fn eq(&self, other: &ManagedRuntimeEventSnapshot) -> bool
fn eq(&self, other: &ManagedRuntimeEventSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedRuntimeEventSnapshot
Auto Trait Implementations§
impl Freeze for ManagedRuntimeEventSnapshot
impl RefUnwindSafe for ManagedRuntimeEventSnapshot
impl Send for ManagedRuntimeEventSnapshot
impl Sync for ManagedRuntimeEventSnapshot
impl Unpin for ManagedRuntimeEventSnapshot
impl UnsafeUnpin for ManagedRuntimeEventSnapshot
impl UnwindSafe for ManagedRuntimeEventSnapshot
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