pub struct DurableExecution {
pub id: String,
pub function_arn: String,
pub status: String,
pub started: DateTime<Utc>,
pub stopped: Option<DateTime<Utc>>,
pub history: Vec<Value>,
pub state: Value,
}Fields§
§id: String§function_arn: String§status: String§started: DateTime<Utc>§stopped: Option<DateTime<Utc>>§history: Vec<Value>§state: ValueTrait Implementations§
Source§impl Clone for DurableExecution
impl Clone for DurableExecution
Source§fn clone(&self) -> DurableExecution
fn clone(&self) -> DurableExecution
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 DurableExecution
impl Debug for DurableExecution
Source§impl<'de> Deserialize<'de> for DurableExecution
impl<'de> Deserialize<'de> for DurableExecution
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 DurableExecution
impl RefUnwindSafe for DurableExecution
impl Send for DurableExecution
impl Sync for DurableExecution
impl Unpin for DurableExecution
impl UnsafeUnpin for DurableExecution
impl UnwindSafe for DurableExecution
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