pub enum CertificateSignatureAlgorithm {
Sha256WithRsa,
Sha384WithRsa,
Sha512WithRsa,
EcdsaWithSha256,
EcdsaWithSha384,
EcdsaWithSha512,
PureEd25519,
}Expand description
Specification of the desired state of the Certificate resource. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
Variants§
Sha256WithRsa
Sha384WithRsa
Sha512WithRsa
EcdsaWithSha256
EcdsaWithSha384
EcdsaWithSha512
PureEd25519
Trait Implementations§
Source§impl Clone for CertificateSignatureAlgorithm
impl Clone for CertificateSignatureAlgorithm
Source§fn clone(&self) -> CertificateSignatureAlgorithm
fn clone(&self) -> CertificateSignatureAlgorithm
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 CertificateSignatureAlgorithm
impl<'de> Deserialize<'de> for CertificateSignatureAlgorithm
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 CertificateSignatureAlgorithm
impl PartialEq for CertificateSignatureAlgorithm
Source§fn eq(&self, other: &CertificateSignatureAlgorithm) -> bool
fn eq(&self, other: &CertificateSignatureAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CertificateSignatureAlgorithm
Auto Trait Implementations§
impl Freeze for CertificateSignatureAlgorithm
impl RefUnwindSafe for CertificateSignatureAlgorithm
impl Send for CertificateSignatureAlgorithm
impl Sync for CertificateSignatureAlgorithm
impl Unpin for CertificateSignatureAlgorithm
impl UnwindSafe for CertificateSignatureAlgorithm
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