pub struct IoK8sApiCoreV1PodDnsConfig {
pub nameservers: Vec<String>,
pub options: Vec<IoK8sApiCoreV1PodDnsConfigOption>,
pub searches: Vec<String>,
}Expand description
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
Fields§
§nameservers: Vec<String>A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.
options: Vec<IoK8sApiCoreV1PodDnsConfigOption>A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.
searches: Vec<String>A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1PodDnsConfig
impl Clone for IoK8sApiCoreV1PodDnsConfig
Source§fn clone(&self) -> IoK8sApiCoreV1PodDnsConfig
fn clone(&self) -> IoK8sApiCoreV1PodDnsConfig
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 IoK8sApiCoreV1PodDnsConfig
impl Debug for IoK8sApiCoreV1PodDnsConfig
Source§impl<'de> Deserialize<'de> for IoK8sApiCoreV1PodDnsConfig
impl<'de> Deserialize<'de> for IoK8sApiCoreV1PodDnsConfig
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 From<&IoK8sApiCoreV1PodDnsConfig> for IoK8sApiCoreV1PodDnsConfig
impl From<&IoK8sApiCoreV1PodDnsConfig> for IoK8sApiCoreV1PodDnsConfig
Source§fn from(value: &IoK8sApiCoreV1PodDnsConfig) -> Self
fn from(value: &IoK8sApiCoreV1PodDnsConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1PodDnsConfig
impl RefUnwindSafe for IoK8sApiCoreV1PodDnsConfig
impl Send for IoK8sApiCoreV1PodDnsConfig
impl Sync for IoK8sApiCoreV1PodDnsConfig
impl Unpin for IoK8sApiCoreV1PodDnsConfig
impl UnwindSafe for IoK8sApiCoreV1PodDnsConfig
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