pub struct UpdateMachineRequest {
pub config: MachineConfig,
pub current_version: Option<String>,
pub name: Option<String>,
pub region: Option<String>,
pub skip_launch: Option<bool>,
pub skip_service_registration: Option<bool>,
pub lease_ttl: Option<u32>,
}Fields§
§config: MachineConfig§current_version: Option<String>§name: Option<String>§region: Option<String>§skip_launch: Option<bool>§skip_service_registration: Option<bool>§lease_ttl: Option<u32>Trait Implementations§
Source§impl Clone for UpdateMachineRequest
impl Clone for UpdateMachineRequest
Source§fn clone(&self) -> UpdateMachineRequest
fn clone(&self) -> UpdateMachineRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateMachineRequest
impl Debug for UpdateMachineRequest
Source§impl<'de> Deserialize<'de> for UpdateMachineRequest
impl<'de> Deserialize<'de> for UpdateMachineRequest
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
Auto Trait Implementations§
impl Freeze for UpdateMachineRequest
impl RefUnwindSafe for UpdateMachineRequest
impl Send for UpdateMachineRequest
impl Sync for UpdateMachineRequest
impl Unpin for UpdateMachineRequest
impl UnsafeUnpin for UpdateMachineRequest
impl UnwindSafe for UpdateMachineRequest
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