pub struct TaskAgentPoolMaintenanceSchedule {
pub days_to_build: Option<DaysToBuild>,
pub schedule_job_id: Option<String>,
pub start_hours: Option<i32>,
pub start_minutes: Option<i32>,
pub time_zone_id: Option<String>,
}Expand description
Fields§
§days_to_build: Option<DaysToBuild>Days for a build (flags enum for days of the week)
schedule_job_id: Option<String>The Job Id of the Scheduled job that will queue the pool maintenance job.
start_hours: Option<i32>Local timezone hour to start
start_minutes: Option<i32>Local timezone minute to start
time_zone_id: Option<String>Time zone of the build schedule (string representation of the time zone id)
Implementations§
Trait Implementations§
source§impl Clone for TaskAgentPoolMaintenanceSchedule
impl Clone for TaskAgentPoolMaintenanceSchedule
source§fn clone(&self) -> TaskAgentPoolMaintenanceSchedule
fn clone(&self) -> TaskAgentPoolMaintenanceSchedule
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 Default for TaskAgentPoolMaintenanceSchedule
impl Default for TaskAgentPoolMaintenanceSchedule
source§fn default() -> TaskAgentPoolMaintenanceSchedule
fn default() -> TaskAgentPoolMaintenanceSchedule
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskAgentPoolMaintenanceSchedule
impl<'de> Deserialize<'de> for TaskAgentPoolMaintenanceSchedule
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 TaskAgentPoolMaintenanceSchedule
impl PartialEq for TaskAgentPoolMaintenanceSchedule
source§fn eq(&self, other: &TaskAgentPoolMaintenanceSchedule) -> bool
fn eq(&self, other: &TaskAgentPoolMaintenanceSchedule) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TaskAgentPoolMaintenanceSchedule
Auto Trait Implementations§
impl Freeze for TaskAgentPoolMaintenanceSchedule
impl RefUnwindSafe for TaskAgentPoolMaintenanceSchedule
impl Send for TaskAgentPoolMaintenanceSchedule
impl Sync for TaskAgentPoolMaintenanceSchedule
impl Unpin for TaskAgentPoolMaintenanceSchedule
impl UnwindSafe for TaskAgentPoolMaintenanceSchedule
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