pub struct TaskServiceUpdate {
pub base: Option<ResourceUpdate>,
pub service_enabled: Option<Boolean>,
pub task_auto_delete_timeout_minutes: Option<Int64>,
pub task_monitor_auto_expiry_seconds: Option<Int64>,
}Expand description
Update struct corresponding to TaskService
Fields§
§base: Option<ResourceUpdate>§service_enabled: Option<Boolean>§task_auto_delete_timeout_minutes: Option<Int64>§task_monitor_auto_expiry_seconds: Option<Int64>Implementations§
Source§impl TaskServiceUpdate
impl TaskServiceUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_base(self, v: ResourceUpdate) -> Self
pub fn with_service_enabled(self, v: Boolean) -> Self
pub fn with_task_auto_delete_timeout_minutes(self, v: Int64) -> Self
pub fn with_task_monitor_auto_expiry_seconds(self, v: Int64) -> Self
Trait Implementations§
Source§impl Debug for TaskServiceUpdate
impl Debug for TaskServiceUpdate
Source§impl Default for TaskServiceUpdate
impl Default for TaskServiceUpdate
Source§fn default() -> TaskServiceUpdate
fn default() -> TaskServiceUpdate
Returns the “default value” for a type. Read more
Source§impl Serialize for TaskServiceUpdate
impl Serialize for TaskServiceUpdate
Auto Trait Implementations§
impl Freeze for TaskServiceUpdate
impl RefUnwindSafe for TaskServiceUpdate
impl Send for TaskServiceUpdate
impl Sync for TaskServiceUpdate
impl Unpin for TaskServiceUpdate
impl UnsafeUnpin for TaskServiceUpdate
impl UnwindSafe for TaskServiceUpdate
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