pub struct IntermediateCert {
pub common_name: String,
pub signature_algorithm: String,
pub country: String,
pub state: String,
pub locality: String,
pub organization: String,
pub not_after: DateTime<Utc>,
pub not_before: DateTime<Utc>,
pub issuer: String,
pub is_valid: bool,
pub time_to_expiration: String,
}Fields§
§common_name: String§signature_algorithm: String§country: String§state: String§locality: String§organization: String§not_after: DateTime<Utc>§not_before: DateTime<Utc>§issuer: String§is_valid: bool§time_to_expiration: StringTrait Implementations§
Source§impl Debug for IntermediateCert
impl Debug for IntermediateCert
Source§impl<'de> Deserialize<'de> for IntermediateCert
impl<'de> Deserialize<'de> for IntermediateCert
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 IntermediateCert
impl PartialEq for IntermediateCert
Source§impl Serialize for IntermediateCert
impl Serialize for IntermediateCert
impl StructuralPartialEq for IntermediateCert
Auto Trait Implementations§
impl Freeze for IntermediateCert
impl RefUnwindSafe for IntermediateCert
impl Send for IntermediateCert
impl Sync for IntermediateCert
impl Unpin for IntermediateCert
impl UnwindSafe for IntermediateCert
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