pub struct DomainNsList {
pub host_obj: Option<Vec<String>>,
pub host_attr: Option<Vec<HostAttr<'static>>>,
}Expand description
The two types of ns lists, hostObj and hostAttr, that may be returned in the domain info response
Fields§
§host_obj: Option<Vec<String>>List of <hostObj> ns elements
host_attr: Option<Vec<HostAttr<'static>>>List of <hostAttr> ns elements
Trait Implementations§
Source§impl Debug for DomainNsList
impl Debug for DomainNsList
Source§impl<'xml> FromXml<'xml> for DomainNsList
impl<'xml> FromXml<'xml> for DomainNsList
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<DomainNsList>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for DomainNsList
impl RefUnwindSafe for DomainNsList
impl Send for DomainNsList
impl Sync for DomainNsList
impl Unpin for DomainNsList
impl UnwindSafe for DomainNsList
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