pub struct ActivityStartedEventDetails {
pub worker_name: Option<String>,
}
Expand description
Contains details about the start of an activity during an execution.
Fields§
§worker_name: Option<String>
The name of the worker that the task is assigned to. These names are provided by the workers when calling GetActivityTask.
Trait Implementations§
Source§impl Clone for ActivityStartedEventDetails
impl Clone for ActivityStartedEventDetails
Source§fn clone(&self) -> ActivityStartedEventDetails
fn clone(&self) -> ActivityStartedEventDetails
Returns a copy of the value. Read more
1.0.0 · 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 ActivityStartedEventDetails
impl Debug for ActivityStartedEventDetails
Source§impl Default for ActivityStartedEventDetails
impl Default for ActivityStartedEventDetails
Source§fn default() -> ActivityStartedEventDetails
fn default() -> ActivityStartedEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityStartedEventDetails
impl<'de> Deserialize<'de> for ActivityStartedEventDetails
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 StructuralPartialEq for ActivityStartedEventDetails
Auto Trait Implementations§
impl Freeze for ActivityStartedEventDetails
impl RefUnwindSafe for ActivityStartedEventDetails
impl Send for ActivityStartedEventDetails
impl Sync for ActivityStartedEventDetails
impl Unpin for ActivityStartedEventDetails
impl UnwindSafe for ActivityStartedEventDetails
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