pub struct Networking {
pub service_subnet: Option<String>,
pub pod_subnet: Option<String>,
pub dns_domain: Option<String>,
}
Expand description
Networking contains elements describing cluster’s networking configuration.
Fields§
§service_subnet: Option<String>
§pod_subnet: Option<String>
§dns_domain: Option<String>
Trait Implementations§
Source§impl Clone for Networking
impl Clone for Networking
Source§fn clone(&self) -> Networking
fn clone(&self) -> Networking
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 Networking
impl Debug for Networking
Source§impl<'de> Deserialize<'de> for Networking
impl<'de> Deserialize<'de> for Networking
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
Auto Trait Implementations§
impl Freeze for Networking
impl RefUnwindSafe for Networking
impl Send for Networking
impl Sync for Networking
impl Unpin for Networking
impl UnwindSafe for Networking
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