#[non_exhaustive]pub struct IpTunnelInterface {
pub base: BaseInterface,
pub ip_tunnel: Option<IpTunnelConfig>,
}Expand description
IP Tunnel interface. The example YAML output of a crate::NetworkState with an ipip interface would be:
---
interfaces:
- name: ipip0
type: ip-tunnel
state: up
ip-tunnel:
type: ipip
local: 192.0.2.1
remote: 192.0.2.2
ttl: 255Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.base: BaseInterface§ip_tunnel: Option<IpTunnelConfig>Deserialize and serialize to ip-tunnel.
Implementations§
Trait Implementations§
Source§impl Clone for IpTunnelInterface
impl Clone for IpTunnelInterface
Source§fn clone(&self) -> IpTunnelInterface
fn clone(&self) -> IpTunnelInterface
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 IpTunnelInterface
impl Debug for IpTunnelInterface
Source§impl Default for IpTunnelInterface
impl Default for IpTunnelInterface
Source§impl<'de> Deserialize<'de> for IpTunnelInterface
impl<'de> Deserialize<'de> for IpTunnelInterface
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 PartialEq for IpTunnelInterface
impl PartialEq for IpTunnelInterface
Source§impl Serialize for IpTunnelInterface
impl Serialize for IpTunnelInterface
impl Eq for IpTunnelInterface
impl StructuralPartialEq for IpTunnelInterface
Auto Trait Implementations§
impl Freeze for IpTunnelInterface
impl RefUnwindSafe for IpTunnelInterface
impl Send for IpTunnelInterface
impl Sync for IpTunnelInterface
impl Unpin for IpTunnelInterface
impl UnsafeUnpin for IpTunnelInterface
impl UnwindSafe for IpTunnelInterface
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.