pub struct ContainerNetworkPolicyDomainSecretParam {
pub domain: String,
pub name: String,
pub value: String,
}Available on crate feature
response-types only.Expand description
A domain-scoped secret injected for allowlisted domains.
Fields§
§domain: StringThe domain associated with the secret.
name: StringThe name of the secret to inject for the domain.
value: StringThe secret value to inject for the domain.
Trait Implementations§
Source§impl Clone for ContainerNetworkPolicyDomainSecretParam
impl Clone for ContainerNetworkPolicyDomainSecretParam
Source§fn clone(&self) -> ContainerNetworkPolicyDomainSecretParam
fn clone(&self) -> ContainerNetworkPolicyDomainSecretParam
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<'de> Deserialize<'de> for ContainerNetworkPolicyDomainSecretParam
impl<'de> Deserialize<'de> for ContainerNetworkPolicyDomainSecretParam
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 ContainerNetworkPolicyDomainSecretParam
impl PartialEq for ContainerNetworkPolicyDomainSecretParam
Source§fn eq(&self, other: &ContainerNetworkPolicyDomainSecretParam) -> bool
fn eq(&self, other: &ContainerNetworkPolicyDomainSecretParam) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContainerNetworkPolicyDomainSecretParam
Auto Trait Implementations§
impl Freeze for ContainerNetworkPolicyDomainSecretParam
impl RefUnwindSafe for ContainerNetworkPolicyDomainSecretParam
impl Send for ContainerNetworkPolicyDomainSecretParam
impl Sync for ContainerNetworkPolicyDomainSecretParam
impl Unpin for ContainerNetworkPolicyDomainSecretParam
impl UnsafeUnpin for ContainerNetworkPolicyDomainSecretParam
impl UnwindSafe for ContainerNetworkPolicyDomainSecretParam
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