pub struct AddZoneRequest {
pub name: Option<String>,
pub description: Option<String>,
}
Fields§
§name: Option<String>
Name of the new zone.
description: Option<String>
Description of the new zone.
Implementations§
Source§impl AddZoneRequest
impl AddZoneRequest
pub fn new() -> AddZoneRequest
Trait Implementations§
Source§impl Clone for AddZoneRequest
impl Clone for AddZoneRequest
Source§fn clone(&self) -> AddZoneRequest
fn clone(&self) -> AddZoneRequest
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 AddZoneRequest
impl Debug for AddZoneRequest
Source§impl<'de> Deserialize<'de> for AddZoneRequest
impl<'de> Deserialize<'de> for AddZoneRequest
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 AddZoneRequest
impl PartialEq for AddZoneRequest
Source§impl Serialize for AddZoneRequest
impl Serialize for AddZoneRequest
impl StructuralPartialEq for AddZoneRequest
Auto Trait Implementations§
impl Freeze for AddZoneRequest
impl RefUnwindSafe for AddZoneRequest
impl Send for AddZoneRequest
impl Sync for AddZoneRequest
impl Unpin for AddZoneRequest
impl UnwindSafe for AddZoneRequest
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