pub struct EndpointResource {
pub endpoint_id: Option<String>,
pub i_pv4_address: Option<String>,
pub i_pv6_address: Option<String>,
pub mac_address: Option<String>,
pub name: Option<String>,
}
Available on crate feature
v5
only.Expand description
EndpointResource contains network resources allocated and used for a container in a network
Fields§
§endpoint_id: Option<String>
§i_pv4_address: Option<String>
§i_pv6_address: Option<String>
§mac_address: Option<String>
§name: Option<String>
Trait Implementations§
Source§impl Debug for EndpointResource
impl Debug for EndpointResource
Source§impl Default for EndpointResource
impl Default for EndpointResource
Source§fn default() -> EndpointResource
fn default() -> EndpointResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointResource
impl<'de> Deserialize<'de> for EndpointResource
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 EndpointResource
impl RefUnwindSafe for EndpointResource
impl Send for EndpointResource
impl Sync for EndpointResource
impl Unpin for EndpointResource
impl UnwindSafe for EndpointResource
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