pub struct NetworkMountPoint {
pub default_gateway: Option<bool>,
pub instance: Option<String>,
pub ip_address: Option<String>,
pub logical_interface: Option<String>,
}Expand description
Mount point for a network.
This type is not used in any activity, and only used as part of another schema.
Fields§
§default_gateway: Option<bool>Network should be a default gateway.
instance: Option<String>Instance to attach network to.
ip_address: Option<String>Ip address of the server.
logical_interface: Option<String>Logical interface to detach from.
Trait Implementations§
Source§impl Clone for NetworkMountPoint
impl Clone for NetworkMountPoint
Source§fn clone(&self) -> NetworkMountPoint
fn clone(&self) -> NetworkMountPoint
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 NetworkMountPoint
impl Debug for NetworkMountPoint
Source§impl Default for NetworkMountPoint
impl Default for NetworkMountPoint
Source§fn default() -> NetworkMountPoint
fn default() -> NetworkMountPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkMountPoint
impl<'de> Deserialize<'de> for NetworkMountPoint
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
Source§impl Serialize for NetworkMountPoint
impl Serialize for NetworkMountPoint
impl Part for NetworkMountPoint
Auto Trait Implementations§
impl Freeze for NetworkMountPoint
impl RefUnwindSafe for NetworkMountPoint
impl Send for NetworkMountPoint
impl Sync for NetworkMountPoint
impl Unpin for NetworkMountPoint
impl UnwindSafe for NetworkMountPoint
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