pub struct WorkerDeregistrationEnvelope {
pub worker_id: String,
pub outcome: String,
pub recovered_workflow_task_count: u64,
}Expand description
Result of gracefully removing a worker-plane registration.
Fields§
§worker_id: String§outcome: String§recovered_workflow_task_count: u64Trait Implementations§
Source§impl Clone for WorkerDeregistrationEnvelope
impl Clone for WorkerDeregistrationEnvelope
Source§impl Debug for WorkerDeregistrationEnvelope
impl Debug for WorkerDeregistrationEnvelope
Source§impl<'de> Deserialize<'de> for WorkerDeregistrationEnvelope
impl<'de> Deserialize<'de> for WorkerDeregistrationEnvelope
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
impl Eq for WorkerDeregistrationEnvelope
impl StructuralPartialEq for WorkerDeregistrationEnvelope
Auto Trait Implementations§
impl Freeze for WorkerDeregistrationEnvelope
impl RefUnwindSafe for WorkerDeregistrationEnvelope
impl Send for WorkerDeregistrationEnvelope
impl Sync for WorkerDeregistrationEnvelope
impl Unpin for WorkerDeregistrationEnvelope
impl UnsafeUnpin for WorkerDeregistrationEnvelope
impl UnwindSafe for WorkerDeregistrationEnvelope
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