pub struct ActionReceipt {
pub status: String,
pub receipt_id: String,
pub action_type: String,
pub started_at: DateTime<Utc>,
pub completed_at: DateTime<Utc>,
pub result: Value,
pub artifacts: Vec<ArtifactRef>,
pub error: Option<StructuredError>,
}Fields§
§status: String§receipt_id: String§action_type: String§started_at: DateTime<Utc>§completed_at: DateTime<Utc>§result: Value§artifacts: Vec<ArtifactRef>§error: Option<StructuredError>Implementations§
Trait Implementations§
Source§impl Clone for ActionReceipt
impl Clone for ActionReceipt
Source§fn clone(&self) -> ActionReceipt
fn clone(&self) -> ActionReceipt
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 moreSource§impl Debug for ActionReceipt
impl Debug for ActionReceipt
Source§impl<'de> Deserialize<'de> for ActionReceipt
impl<'de> Deserialize<'de> for ActionReceipt
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
Source§impl JsonSchema for ActionReceipt
impl JsonSchema for ActionReceipt
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ActionReceipt
impl RefUnwindSafe for ActionReceipt
impl Send for ActionReceipt
impl Sync for ActionReceipt
impl Unpin for ActionReceipt
impl UnsafeUnpin for ActionReceipt
impl UnwindSafe for ActionReceipt
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