#[non_exhaustive]pub struct OvsInterface {
pub base: BaseInterface,
pub patch: Option<OvsPatchConfig>,
pub dpdk: Option<OvsDpdkConfig>,
}Expand description
OpenvSwitch internal interface. Example yaml output of crate::NetworkState with an DPDK enabled OVS interface:
---
interfaces:
- name: ovs0
type: ovs-interface
state: up
dpdk:
devargs: "0000:af:00.1"
rx-queue: 100
- name: br0
type: ovs-bridge
state: up
bridge:
options:
datapath: "netdev"
port:
- name: ovs0
ovs-db:
other_config:
dpdk-init: "true"The yaml example of OVS pathing:
---
interfaces:
- name: patch0
type: ovs-interface
state: up
patch:
peer: patch1
- name: ovs-br0
type: ovs-bridge
state: up
bridge:
port:
- name: patch0
- name: patch1
type: ovs-interface
state: up
patch:
peer: patch0
- name: ovs-br1
type: ovs-bridge
state: up
bridge:
port:
- name: patch1Fields (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§patch: Option<OvsPatchConfig>§dpdk: Option<OvsDpdkConfig>Implementations§
Source§impl OvsInterface
impl OvsInterface
Trait Implementations§
Source§impl Clone for OvsInterface
impl Clone for OvsInterface
Source§fn clone(&self) -> OvsInterface
fn clone(&self) -> OvsInterface
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 OvsInterface
impl Debug for OvsInterface
Source§impl Default for OvsInterface
impl Default for OvsInterface
Source§impl<'de> Deserialize<'de> for OvsInterface
impl<'de> Deserialize<'de> for OvsInterface
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 OvsInterface
impl PartialEq for OvsInterface
Source§impl Serialize for OvsInterface
impl Serialize for OvsInterface
impl Eq for OvsInterface
impl StructuralPartialEq for OvsInterface
Auto Trait Implementations§
impl Freeze for OvsInterface
impl RefUnwindSafe for OvsInterface
impl Send for OvsInterface
impl Sync for OvsInterface
impl Unpin for OvsInterface
impl UnwindSafe for OvsInterface
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.