pub struct NetworkPathComponentDetails {
pub address: Option<Vec<String>>,
pub port_ranges: Option<Vec<PortRange>>,
}
Expand description
Information about the destination of the next component in the network path.
Fields§
§address: Option<Vec<String>>
The IP addresses of the destination.
port_ranges: Option<Vec<PortRange>>
A list of port ranges for the destination.
Trait Implementations§
Source§impl Clone for NetworkPathComponentDetails
impl Clone for NetworkPathComponentDetails
Source§fn clone(&self) -> NetworkPathComponentDetails
fn clone(&self) -> NetworkPathComponentDetails
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 NetworkPathComponentDetails
impl Debug for NetworkPathComponentDetails
Source§impl Default for NetworkPathComponentDetails
impl Default for NetworkPathComponentDetails
Source§fn default() -> NetworkPathComponentDetails
fn default() -> NetworkPathComponentDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkPathComponentDetails
impl<'de> Deserialize<'de> for NetworkPathComponentDetails
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
impl StructuralPartialEq for NetworkPathComponentDetails
Auto Trait Implementations§
impl Freeze for NetworkPathComponentDetails
impl RefUnwindSafe for NetworkPathComponentDetails
impl Send for NetworkPathComponentDetails
impl Sync for NetworkPathComponentDetails
impl Unpin for NetworkPathComponentDetails
impl UnwindSafe for NetworkPathComponentDetails
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