pub struct TaskAgentPoolMaintenanceJob {Show 14 fields
pub definition_id: Option<i32>,
pub error_count: Option<i32>,
pub finish_time: Option<OffsetDateTime>,
pub job_id: Option<i32>,
pub logs_download_url: Option<String>,
pub orchestration_id: Option<String>,
pub pool: Option<TaskAgentPoolReference>,
pub queue_time: Option<OffsetDateTime>,
pub requested_by: Option<IdentityRef>,
pub result: Option<Result>,
pub start_time: Option<OffsetDateTime>,
pub status: Option<Status>,
pub target_agents: Vec<TaskAgentPoolMaintenanceJobTargetAgent>,
pub warning_count: Option<i32>,
}
Expand description
Fields§
§definition_id: Option<i32>
The maintenance definition for the maintenance job
error_count: Option<i32>
The total error counts during the maintenance job
finish_time: Option<OffsetDateTime>
Time that the maintenance job was completed
job_id: Option<i32>
Id of the maintenance job
logs_download_url: Option<String>
The log download url for the maintenance job
orchestration_id: Option<String>
Orchestration/Plan Id for the maintenance job
pool: Option<TaskAgentPoolReference>
§queue_time: Option<OffsetDateTime>
Time that the maintenance job was queued
requested_by: Option<IdentityRef>
§result: Option<Result>
The maintenance job result
start_time: Option<OffsetDateTime>
Time that the maintenance job was started
status: Option<Status>
Status of the maintenance job
target_agents: Vec<TaskAgentPoolMaintenanceJobTargetAgent>
§warning_count: Option<i32>
The total warning counts during the maintenance job
Implementations§
Trait Implementations§
source§impl Clone for TaskAgentPoolMaintenanceJob
impl Clone for TaskAgentPoolMaintenanceJob
source§fn clone(&self) -> TaskAgentPoolMaintenanceJob
fn clone(&self) -> TaskAgentPoolMaintenanceJob
Returns a copy 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 TaskAgentPoolMaintenanceJob
impl Debug for TaskAgentPoolMaintenanceJob
source§impl Default for TaskAgentPoolMaintenanceJob
impl Default for TaskAgentPoolMaintenanceJob
source§fn default() -> TaskAgentPoolMaintenanceJob
fn default() -> TaskAgentPoolMaintenanceJob
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskAgentPoolMaintenanceJob
impl<'de> Deserialize<'de> for TaskAgentPoolMaintenanceJob
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 PartialEq for TaskAgentPoolMaintenanceJob
impl PartialEq for TaskAgentPoolMaintenanceJob
source§fn eq(&self, other: &TaskAgentPoolMaintenanceJob) -> bool
fn eq(&self, other: &TaskAgentPoolMaintenanceJob) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TaskAgentPoolMaintenanceJob
Auto Trait Implementations§
impl RefUnwindSafe for TaskAgentPoolMaintenanceJob
impl Send for TaskAgentPoolMaintenanceJob
impl Sync for TaskAgentPoolMaintenanceJob
impl Unpin for TaskAgentPoolMaintenanceJob
impl UnwindSafe for TaskAgentPoolMaintenanceJob
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