pub enum ClusterSdnCreateControllersRequest {
Evpn(Box<PveSdnControllerEvpnConfig>),
Bgp(Box<PveSdnControllerBgpConfig>),
Isis(Box<PveSdnControllerIsisConfig>),
Faucet(Box<PveSdnControllerFaucetConfig>),
}Variants§
Evpn(Box<PveSdnControllerEvpnConfig>)
Bgp(Box<PveSdnControllerBgpConfig>)
Isis(Box<PveSdnControllerIsisConfig>)
Faucet(Box<PveSdnControllerFaucetConfig>)
Trait Implementations§
Source§impl Clone for ClusterSdnCreateControllersRequest
impl Clone for ClusterSdnCreateControllersRequest
Source§fn clone(&self) -> ClusterSdnCreateControllersRequest
fn clone(&self) -> ClusterSdnCreateControllersRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ClusterSdnCreateControllersRequest
impl<'de> Deserialize<'de> for ClusterSdnCreateControllersRequest
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 ClusterSdnCreateControllersRequest
impl PartialEq for ClusterSdnCreateControllersRequest
Source§fn eq(&self, other: &ClusterSdnCreateControllersRequest) -> bool
fn eq(&self, other: &ClusterSdnCreateControllersRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterSdnCreateControllersRequest
Auto Trait Implementations§
impl Freeze for ClusterSdnCreateControllersRequest
impl RefUnwindSafe for ClusterSdnCreateControllersRequest
impl Send for ClusterSdnCreateControllersRequest
impl Sync for ClusterSdnCreateControllersRequest
impl Unpin for ClusterSdnCreateControllersRequest
impl UnsafeUnpin for ClusterSdnCreateControllersRequest
impl UnwindSafe for ClusterSdnCreateControllersRequest
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