pub struct UpdateIpAddressRequest {
pub address: Option<String>,
pub status: Option<String>,
pub dns_name: Option<String>,
pub description: Option<String>,
}Expand description
request for updating an IP address (id-based references).
Fields§
§address: Option<String>updated CIDR address string.
status: Option<String>updated status slug.
dns_name: Option<String>updated DNS name value.
description: Option<String>updated description text.
Trait Implementations§
Source§impl Clone for UpdateIpAddressRequest
impl Clone for UpdateIpAddressRequest
Source§fn clone(&self) -> UpdateIpAddressRequest
fn clone(&self) -> UpdateIpAddressRequest
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 UpdateIpAddressRequest
impl Debug for UpdateIpAddressRequest
Source§impl<'de> Deserialize<'de> for UpdateIpAddressRequest
impl<'de> Deserialize<'de> for UpdateIpAddressRequest
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 UpdateIpAddressRequest
impl RefUnwindSafe for UpdateIpAddressRequest
impl Send for UpdateIpAddressRequest
impl Sync for UpdateIpAddressRequest
impl Unpin for UpdateIpAddressRequest
impl UnsafeUnpin for UpdateIpAddressRequest
impl UnwindSafe for UpdateIpAddressRequest
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