pub struct TestJob {
pub creation_time: Option<OffsetDateTime>,
pub status: Option<String>,
pub status_details: Option<String>,
pub run_on: Option<String>,
pub start_time: Option<OffsetDateTime>,
pub end_time: Option<OffsetDateTime>,
pub exception: Option<String>,
pub last_modified_time: Option<OffsetDateTime>,
pub last_status_modified_time: Option<OffsetDateTime>,
pub parameters: Option<Value>,
pub log_activity_trace: Option<i32>,
}Expand description
Definition of the test job.
Fields§
§creation_time: Option<OffsetDateTime>Gets or sets the creation time of the test job.
status: Option<String>Gets or sets the status of the test job.
status_details: Option<String>Gets or sets the status details of the test job.
run_on: Option<String>Gets or sets the runOn which specifies the group name where the job is to be executed.
start_time: Option<OffsetDateTime>Gets or sets the start time of the test job.
end_time: Option<OffsetDateTime>Gets or sets the end time of the test job.
exception: Option<String>Gets or sets the exception of the test job.
last_modified_time: Option<OffsetDateTime>Gets or sets the last modified time of the test job.
last_status_modified_time: Option<OffsetDateTime>Gets or sets the last status modified time of the test job.
parameters: Option<Value>Gets or sets the parameters of the test job.
log_activity_trace: Option<i32>The activity-level tracing options of the runbook.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TestJob
impl<'de> Deserialize<'de> for TestJob
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 TestJob
Auto Trait Implementations§
impl Freeze for TestJob
impl RefUnwindSafe for TestJob
impl Send for TestJob
impl Sync for TestJob
impl Unpin for TestJob
impl UnwindSafe for TestJob
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