pub struct EndpointIPAMConfig {
pub ipv4_address: String,
pub ipv6_address: String,
pub link_local_ips: Vec<String>,
}
Fields§
§ipv4_address: String
§ipv6_address: String
§link_local_ips: Vec<String>
Trait Implementations§
Source§impl Clone for EndpointIPAMConfig
impl Clone for EndpointIPAMConfig
Source§fn clone(&self) -> EndpointIPAMConfig
fn clone(&self) -> EndpointIPAMConfig
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 EndpointIPAMConfig
impl Debug for EndpointIPAMConfig
Source§impl<'de> Deserialize<'de> for EndpointIPAMConfig
impl<'de> Deserialize<'de> for EndpointIPAMConfig
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
Auto Trait Implementations§
impl Freeze for EndpointIPAMConfig
impl RefUnwindSafe for EndpointIPAMConfig
impl Send for EndpointIPAMConfig
impl Sync for EndpointIPAMConfig
impl Unpin for EndpointIPAMConfig
impl UnwindSafe for EndpointIPAMConfig
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