Struct k8s_openapi::api::core::v1::PodDNSConfig
source · pub struct PodDNSConfig {
pub nameservers: Option<Vec<String>>,
pub options: Option<Vec<PodDNSConfigOption>>,
pub searches: Option<Vec<String>>,
}
Expand description
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
Fields§
§nameservers: Option<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: Option<Vec<PodDNSConfigOption>>
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: Option<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 PodDNSConfig
impl Clone for PodDNSConfig
source§fn clone(&self) -> PodDNSConfig
fn clone(&self) -> PodDNSConfig
Returns a copy 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 PodDNSConfig
impl Debug for PodDNSConfig
source§impl DeepMerge for PodDNSConfig
impl DeepMerge for PodDNSConfig
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PodDNSConfig
impl Default for PodDNSConfig
source§fn default() -> PodDNSConfig
fn default() -> PodDNSConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PodDNSConfig
impl<'de> Deserialize<'de> for PodDNSConfig
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 PodDNSConfig
impl PartialEq for PodDNSConfig
source§impl Serialize for PodDNSConfig
impl Serialize for PodDNSConfig
impl StructuralPartialEq for PodDNSConfig
Auto Trait Implementations§
impl Freeze for PodDNSConfig
impl RefUnwindSafe for PodDNSConfig
impl Send for PodDNSConfig
impl Sync for PodDNSConfig
impl Unpin for PodDNSConfig
impl UnwindSafe for PodDNSConfig
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)