pub struct Execution {
pub id: Option<i32>,
pub vendor_type: Option<String>,
pub vendor_id: Option<i32>,
pub status: Option<String>,
pub status_message: Option<String>,
pub metrics: Option<Box<Metrics>>,
pub trigger: Option<String>,
pub extra_attrs: Option<HashMap<String, Value>>,
pub start_time: Option<String>,
pub end_time: Option<String>,
}Fields§
§id: Option<i32>The ID of execution
vendor_type: Option<String>The vendor type of execution
vendor_id: Option<i32>The vendor id of execution
status: Option<String>The status of execution
status_message: Option<String>The status message of execution
metrics: Option<Box<Metrics>>§trigger: Option<String>The trigger of execution
extra_attrs: Option<HashMap<String, Value>>§start_time: Option<String>The start time of execution
end_time: Option<String>The end time of execution
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Execution
impl<'de> Deserialize<'de> for Execution
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 Execution
Auto Trait Implementations§
impl Freeze for Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnwindSafe for Execution
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