pub enum ClusterIpFamily {
InvalidIpFamily,
Ipv4IpFamily,
Ipv6IpFamily,
DualStackIpFamily,
}
Expand description
ClusterIPFamily defines the types of supported IP families.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ClusterIpFamily
impl Clone for ClusterIpFamily
Source§fn clone(&self) -> ClusterIpFamily
fn clone(&self) -> ClusterIpFamily
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 ClusterIpFamily
impl Debug for ClusterIpFamily
Source§impl Default for ClusterIpFamily
impl Default for ClusterIpFamily
Source§impl<'de> Deserialize<'de> for ClusterIpFamily
impl<'de> Deserialize<'de> for ClusterIpFamily
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 Display for ClusterIpFamily
impl Display for ClusterIpFamily
Source§impl From<IpNet> for ClusterIpFamily
impl From<IpNet> for ClusterIpFamily
Source§impl PartialEq for ClusterIpFamily
impl PartialEq for ClusterIpFamily
Source§impl PartialOrd for ClusterIpFamily
impl PartialOrd for ClusterIpFamily
Source§impl Serialize for ClusterIpFamily
impl Serialize for ClusterIpFamily
impl Copy for ClusterIpFamily
impl StructuralPartialEq for ClusterIpFamily
Auto Trait Implementations§
impl Freeze for ClusterIpFamily
impl RefUnwindSafe for ClusterIpFamily
impl Send for ClusterIpFamily
impl Sync for ClusterIpFamily
impl Unpin for ClusterIpFamily
impl UnwindSafe for ClusterIpFamily
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