pub struct HostAddRemove<'a> {
pub addresses: Option<&'a [IpAddr]>,
pub statuses: Option<&'a [ObjectStatus<'a>]>,
}
Expand description
Type for data under the <add> and <rem> tags
Fields§
§addresses: Option<&'a [IpAddr]>
The IP addresses to be added to or removed from the host
statuses: Option<&'a [ObjectStatus<'a>]>
The statuses to be added to or removed from the host
Trait Implementations§
Source§impl<'a> Debug for HostAddRemove<'a>
impl<'a> Debug for HostAddRemove<'a>
Auto Trait Implementations§
impl<'a> Freeze for HostAddRemove<'a>
impl<'a> RefUnwindSafe for HostAddRemove<'a>
impl<'a> Send for HostAddRemove<'a>
impl<'a> Sync for HostAddRemove<'a>
impl<'a> Unpin for HostAddRemove<'a>
impl<'a> UnwindSafe for HostAddRemove<'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