pub struct NodesCertificatesCreateCustomResponseDataInner {
pub filename: String,
pub fingerprint: Option<String>,
pub issuer: String,
pub notafter: Option<i64>,
pub notbefore: Option<i64>,
pub pem: Option<String>,
pub public_key_bits: Option<i32>,
pub public_key_type: String,
pub san: Vec<String>,
pub subject: String,
}Fields§
§filename: StringCertificate file name.
fingerprint: Option<String>The SSL Fingerprint.
issuer: StringCertificate issuer name.
notafter: Option<i64>Certificate’s notAfter timestamp (UNIX epoch).
notbefore: Option<i64>Certificate’s notBefore timestamp (UNIX epoch).
pem: Option<String>Certificate in PEM format.
public_key_bits: Option<i32>Certificate’s public key size if available.
public_key_type: StringCertificate’s public key algorithm.
san: Vec<String>List of certificate’s SubjectAlternativeName entries.
subject: StringCertificate subject name.
Implementations§
Trait Implementations§
Source§impl Clone for NodesCertificatesCreateCustomResponseDataInner
impl Clone for NodesCertificatesCreateCustomResponseDataInner
Source§fn clone(&self) -> NodesCertificatesCreateCustomResponseDataInner
fn clone(&self) -> NodesCertificatesCreateCustomResponseDataInner
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 Default for NodesCertificatesCreateCustomResponseDataInner
impl Default for NodesCertificatesCreateCustomResponseDataInner
Source§fn default() -> NodesCertificatesCreateCustomResponseDataInner
fn default() -> NodesCertificatesCreateCustomResponseDataInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesCertificatesCreateCustomResponseDataInner
impl<'de> Deserialize<'de> for NodesCertificatesCreateCustomResponseDataInner
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 NodesCertificatesCreateCustomResponseDataInner
impl PartialEq for NodesCertificatesCreateCustomResponseDataInner
Source§fn eq(&self, other: &NodesCertificatesCreateCustomResponseDataInner) -> bool
fn eq(&self, other: &NodesCertificatesCreateCustomResponseDataInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodesCertificatesCreateCustomResponseDataInner
Auto Trait Implementations§
impl Freeze for NodesCertificatesCreateCustomResponseDataInner
impl RefUnwindSafe for NodesCertificatesCreateCustomResponseDataInner
impl Send for NodesCertificatesCreateCustomResponseDataInner
impl Sync for NodesCertificatesCreateCustomResponseDataInner
impl Unpin for NodesCertificatesCreateCustomResponseDataInner
impl UnsafeUnpin for NodesCertificatesCreateCustomResponseDataInner
impl UnwindSafe for NodesCertificatesCreateCustomResponseDataInner
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