pub struct GCWorkerEvent {
pub id: i64,
pub node_id: String,
pub region_cluster_id: Option<i64>,
pub goal: String,
pub sid: Option<i64>,
pub subject: Option<String>,
pub ops: Value,
pub duration_ms: i64,
pub event_time: String,
pub created_at: Option<String>,
}Fields§
§id: i64§node_id: String§region_cluster_id: Option<i64>§goal: String§sid: Option<i64>§subject: Option<String>§ops: Value§duration_ms: i64§event_time: String§created_at: Option<String>Trait Implementations§
Source§impl Clone for GCWorkerEvent
impl Clone for GCWorkerEvent
Source§fn clone(&self) -> GCWorkerEvent
fn clone(&self) -> GCWorkerEvent
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 GCWorkerEvent
impl Debug for GCWorkerEvent
Source§impl<'de> Deserialize<'de> for GCWorkerEvent
impl<'de> Deserialize<'de> for GCWorkerEvent
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 GCWorkerEvent
impl RefUnwindSafe for GCWorkerEvent
impl Send for GCWorkerEvent
impl Sync for GCWorkerEvent
impl Unpin for GCWorkerEvent
impl UnsafeUnpin for GCWorkerEvent
impl UnwindSafe for GCWorkerEvent
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