pub struct ActivityResult {
pub activity_name: String,
pub status: ActivityStatus,
pub outputs: Option<HashMap<String, Value>>,
pub error: Option<String>,
pub execution_time: Duration,
pub attempt_count: u32,
}
Expand description
Activity実行結果
Fields§
§activity_name: String
§status: ActivityStatus
§outputs: Option<HashMap<String, Value>>
§error: Option<String>
§execution_time: Duration
§attempt_count: u32
Trait Implementations§
Source§impl Clone for ActivityResult
impl Clone for ActivityResult
Source§fn clone(&self) -> ActivityResult
fn clone(&self) -> ActivityResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ActivityResult
impl RefUnwindSafe for ActivityResult
impl Send for ActivityResult
impl Sync for ActivityResult
impl Unpin for ActivityResult
impl UnwindSafe for ActivityResult
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