pub struct KubernetesCustomCertificateConfig {
pub tls_secret_ref: KubernetesTlsSecretRef,
}Expand description
KubernetesCustomCertificateConfig
JSON schema
{
"type": "object",
"required": [
"tlsSecretRef"
],
"properties": {
"tlsSecretRef": {
"$ref": "#/components/schemas/KubernetesTlsSecretRef"
}
}
}Fields§
§tls_secret_ref: KubernetesTlsSecretRefImplementations§
Trait Implementations§
Source§impl Clone for KubernetesCustomCertificateConfig
impl Clone for KubernetesCustomCertificateConfig
Source§fn clone(&self) -> KubernetesCustomCertificateConfig
fn clone(&self) -> KubernetesCustomCertificateConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KubernetesCustomCertificateConfig
impl<'de> Deserialize<'de> for KubernetesCustomCertificateConfig
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<&KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
impl From<&KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
Source§fn from(value: &KubernetesCustomCertificateConfig) -> Self
fn from(value: &KubernetesCustomCertificateConfig) -> Self
Converts to this type from the input type.
Source§impl From<KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
impl From<KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
Source§fn from(value: KubernetesCustomCertificateConfig) -> Self
fn from(value: KubernetesCustomCertificateConfig) -> Self
Converts to this type from the input type.
Source§impl TryFrom<KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
impl TryFrom<KubernetesCustomCertificateConfig> for KubernetesCustomCertificateConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: KubernetesCustomCertificateConfig,
) -> Result<Self, ConversionError>
fn try_from( value: KubernetesCustomCertificateConfig, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KubernetesCustomCertificateConfig
impl RefUnwindSafe for KubernetesCustomCertificateConfig
impl Send for KubernetesCustomCertificateConfig
impl Sync for KubernetesCustomCertificateConfig
impl Unpin for KubernetesCustomCertificateConfig
impl UnsafeUnpin for KubernetesCustomCertificateConfig
impl UnwindSafe for KubernetesCustomCertificateConfig
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