pub struct IoK8sApiCoreV1HostAlias {
pub hostnames: Vec<String>,
pub ip: Option<String>,
}Expand description
HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod’s hosts file.
Fields§
§hostnames: Vec<String>Hostnames for the above IP address.
ip: Option<String>IP address of the host file entry.
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1HostAlias
impl Clone for IoK8sApiCoreV1HostAlias
Source§fn clone(&self) -> IoK8sApiCoreV1HostAlias
fn clone(&self) -> IoK8sApiCoreV1HostAlias
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 IoK8sApiCoreV1HostAlias
impl Debug for IoK8sApiCoreV1HostAlias
Source§impl<'de> Deserialize<'de> for IoK8sApiCoreV1HostAlias
impl<'de> Deserialize<'de> for IoK8sApiCoreV1HostAlias
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<&IoK8sApiCoreV1HostAlias> for IoK8sApiCoreV1HostAlias
impl From<&IoK8sApiCoreV1HostAlias> for IoK8sApiCoreV1HostAlias
Source§fn from(value: &IoK8sApiCoreV1HostAlias) -> Self
fn from(value: &IoK8sApiCoreV1HostAlias) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1HostAlias
impl RefUnwindSafe for IoK8sApiCoreV1HostAlias
impl Send for IoK8sApiCoreV1HostAlias
impl Sync for IoK8sApiCoreV1HostAlias
impl Unpin for IoK8sApiCoreV1HostAlias
impl UnwindSafe for IoK8sApiCoreV1HostAlias
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