pub struct SecretClassBackendExperimentalCertManagerIssuer {
pub kind: SecretClassBackendExperimentalCertManagerIssuerKind,
pub name: String,
}Expand description
A reference to the cert-manager issuer that the certificates should be requested from.
Fields§
§kind: SecretClassBackendExperimentalCertManagerIssuerKindThe kind of the issuer, Issuer or ClusterIssuer.
If Issuer then it must be in the same namespace as the Pods using it.
name: StringThe name of the issuer.
Trait Implementations§
Source§impl Clone for SecretClassBackendExperimentalCertManagerIssuer
impl Clone for SecretClassBackendExperimentalCertManagerIssuer
Source§fn clone(&self) -> SecretClassBackendExperimentalCertManagerIssuer
fn clone(&self) -> SecretClassBackendExperimentalCertManagerIssuer
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 SecretClassBackendExperimentalCertManagerIssuer
impl<'de> Deserialize<'de> for SecretClassBackendExperimentalCertManagerIssuer
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 SecretClassBackendExperimentalCertManagerIssuer
impl PartialEq for SecretClassBackendExperimentalCertManagerIssuer
Source§fn eq(&self, other: &SecretClassBackendExperimentalCertManagerIssuer) -> bool
fn eq(&self, other: &SecretClassBackendExperimentalCertManagerIssuer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecretClassBackendExperimentalCertManagerIssuer
Auto Trait Implementations§
impl Freeze for SecretClassBackendExperimentalCertManagerIssuer
impl RefUnwindSafe for SecretClassBackendExperimentalCertManagerIssuer
impl Send for SecretClassBackendExperimentalCertManagerIssuer
impl Sync for SecretClassBackendExperimentalCertManagerIssuer
impl Unpin for SecretClassBackendExperimentalCertManagerIssuer
impl UnwindSafe for SecretClassBackendExperimentalCertManagerIssuer
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