pub struct DomainAddRemove<'a> {
pub ns: Option<HostList<'a>>,
pub contacts: Option<&'a [DomainContact<'a>]>,
pub statuses: Option<&'a [ObjectStatus<'a>]>,
}
Expand description
Type for elements under the <add> and <rem> tags for domain update
Fields§
§ns: Option<HostList<'a>>
The list of nameservers to add or remove
Type T can be either a HostObjList
or HostAttrList
contacts: Option<&'a [DomainContact<'a>]>
The list of contacts to add to or remove from the domain
statuses: Option<&'a [ObjectStatus<'a>]>
The list of statuses to add to or remove from the domain
Trait Implementations§
Source§impl<'a> Debug for DomainAddRemove<'a>
impl<'a> Debug for DomainAddRemove<'a>
Auto Trait Implementations§
impl<'a> Freeze for DomainAddRemove<'a>
impl<'a> RefUnwindSafe for DomainAddRemove<'a>
impl<'a> Send for DomainAddRemove<'a>
impl<'a> Sync for DomainAddRemove<'a>
impl<'a> Unpin for DomainAddRemove<'a>
impl<'a> UnwindSafe for DomainAddRemove<'a>
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