pub struct ManagerUpdate {Show 13 fields
pub base: Option<ResourceUpdate>,
pub date_time: Option<DateTimeOffset>,
pub date_time_local_offset: Option<String>,
pub auto_dst_enabled: Option<Boolean>,
pub time_zone_name: Option<String>,
pub location: Option<LocationUpdate>,
pub location_indicator_active: Option<Boolean>,
pub service_identification: Option<String>,
pub additional_firmware_versions: Option<AdditionalVersionsUpdate>,
pub daylight_saving_time: Option<DaylightSavingTimeUpdate>,
pub date_time_source: Option<DateTimeSource>,
pub ready_to_remove: Option<Boolean>,
pub service_use_notification: Option<String>,
}Expand description
Update struct corresponding to Manager
Fields§
§base: Option<ResourceUpdate>§date_time: Option<DateTimeOffset>§date_time_local_offset: Option<String>§auto_dst_enabled: Option<Boolean>§time_zone_name: Option<String>§location: Option<LocationUpdate>§location_indicator_active: Option<Boolean>§service_identification: Option<String>§additional_firmware_versions: Option<AdditionalVersionsUpdate>§daylight_saving_time: Option<DaylightSavingTimeUpdate>§date_time_source: Option<DateTimeSource>§ready_to_remove: Option<Boolean>§service_use_notification: Option<String>Implementations§
Source§impl ManagerUpdate
impl ManagerUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_base(self, v: ResourceUpdate) -> Self
pub fn with_date_time(self, v: DateTimeOffset) -> Self
pub fn with_date_time_local_offset(self, v: String) -> Self
pub fn with_auto_dst_enabled(self, v: Boolean) -> Self
pub fn with_time_zone_name(self, v: String) -> Self
pub fn with_location(self, v: LocationUpdate) -> Self
pub fn with_location_indicator_active(self, v: Boolean) -> Self
pub fn with_service_identification(self, v: String) -> Self
pub fn with_additional_firmware_versions( self, v: AdditionalVersionsUpdate, ) -> Self
pub fn with_daylight_saving_time(self, v: DaylightSavingTimeUpdate) -> Self
pub fn with_date_time_source(self, v: DateTimeSource) -> Self
pub fn with_ready_to_remove(self, v: Boolean) -> Self
pub fn with_service_use_notification(self, v: String) -> Self
Trait Implementations§
Source§impl Debug for ManagerUpdate
impl Debug for ManagerUpdate
Source§impl Default for ManagerUpdate
impl Default for ManagerUpdate
Source§fn default() -> ManagerUpdate
fn default() -> ManagerUpdate
Returns the “default value” for a type. Read more
Source§impl Serialize for ManagerUpdate
impl Serialize for ManagerUpdate
Auto Trait Implementations§
impl Freeze for ManagerUpdate
impl RefUnwindSafe for ManagerUpdate
impl Send for ManagerUpdate
impl Sync for ManagerUpdate
impl Unpin for ManagerUpdate
impl UnsafeUnpin for ManagerUpdate
impl UnwindSafe for ManagerUpdate
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