pub struct RequestBodyForUpdate {
pub service_id: Option<String>,
pub description: Option<String>,
}Expand description
RequestBodyForUpdate : All attributes for updating a domain
Fields§
§service_id: Option<String>The service_id associated with your domain or null if there is no association.
description: Option<String>A freeform descriptive note.
Implementations§
Source§impl RequestBodyForUpdate
impl RequestBodyForUpdate
Sourcepub fn new() -> RequestBodyForUpdate
pub fn new() -> RequestBodyForUpdate
All attributes for updating a domain
Trait Implementations§
Source§impl Clone for RequestBodyForUpdate
impl Clone for RequestBodyForUpdate
Source§fn clone(&self) -> RequestBodyForUpdate
fn clone(&self) -> RequestBodyForUpdate
Returns a duplicate 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 Debug for RequestBodyForUpdate
impl Debug for RequestBodyForUpdate
Source§impl Default for RequestBodyForUpdate
impl Default for RequestBodyForUpdate
Source§fn default() -> RequestBodyForUpdate
fn default() -> RequestBodyForUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RequestBodyForUpdate
impl<'de> Deserialize<'de> for RequestBodyForUpdate
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 RequestBodyForUpdate
impl PartialEq for RequestBodyForUpdate
Source§impl Serialize for RequestBodyForUpdate
impl Serialize for RequestBodyForUpdate
impl StructuralPartialEq for RequestBodyForUpdate
Auto Trait Implementations§
impl Freeze for RequestBodyForUpdate
impl RefUnwindSafe for RequestBodyForUpdate
impl Send for RequestBodyForUpdate
impl Sync for RequestBodyForUpdate
impl Unpin for RequestBodyForUpdate
impl UnwindSafe for RequestBodyForUpdate
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