pub struct AfterEvent {
pub call_id: String,
pub end_time: f64,
pub result: Option<Value>,
pub error: Option<ActionError>,
pub after_snapshot: Option<String>,
pub point: Option<Point>,
}Expand description
Action-completion event.
Fields§
§call_id: String§end_time: f64§result: Option<Value>§error: Option<ActionError>§after_snapshot: Option<String>§point: Option<Point>Trait Implementations§
Source§impl Clone for AfterEvent
impl Clone for AfterEvent
Source§fn clone(&self) -> AfterEvent
fn clone(&self) -> AfterEvent
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 AfterEvent
impl Debug for AfterEvent
Source§impl<'de> Deserialize<'de> for AfterEvent
impl<'de> Deserialize<'de> for AfterEvent
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 AfterEvent
impl RefUnwindSafe for AfterEvent
impl Send for AfterEvent
impl Sync for AfterEvent
impl Unpin for AfterEvent
impl UnsafeUnpin for AfterEvent
impl UnwindSafe for AfterEvent
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