pub struct PortIpAddress {
pub ip_address: IpAddr,
pub subnet_id: String,
/* private fields */
}Expand description
A fixed IP address of a port.
Fields§
§ip_address: IpAddrIP address.
subnet_id: StringID of the subnet the address belongs to.
Implementations§
Trait Implementations§
Source§impl Clone for PortIpAddress
impl Clone for PortIpAddress
Source§fn clone(&self) -> PortIpAddress
fn clone(&self) -> PortIpAddress
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 moreAuto Trait Implementations§
impl Freeze for PortIpAddress
impl !RefUnwindSafe for PortIpAddress
impl Send for PortIpAddress
impl Sync for PortIpAddress
impl Unpin for PortIpAddress
impl !UnwindSafe for PortIpAddress
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