pub struct RevocationDetails {
pub revocation_state: Option<String>,
pub revocation_time: Option<DateTime<Utc>>,
}Expand description
Describes fields that are relavent to the revocation of a Certificate.
This type is not used in any activity, and only used as part of another schema.
Fields§
§revocation_state: Option<String>Indicates why a Certificate was revoked.
revocation_time: Option<DateTime<Utc>>The time at which this Certificate was revoked.
Trait Implementations§
Source§impl Clone for RevocationDetails
impl Clone for RevocationDetails
Source§fn clone(&self) -> RevocationDetails
fn clone(&self) -> RevocationDetails
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 Debug for RevocationDetails
impl Debug for RevocationDetails
Source§impl Default for RevocationDetails
impl Default for RevocationDetails
Source§fn default() -> RevocationDetails
fn default() -> RevocationDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RevocationDetails
impl<'de> Deserialize<'de> for RevocationDetails
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 Serialize for RevocationDetails
impl Serialize for RevocationDetails
impl Part for RevocationDetails
Auto Trait Implementations§
impl Freeze for RevocationDetails
impl RefUnwindSafe for RevocationDetails
impl Send for RevocationDetails
impl Sync for RevocationDetails
impl Unpin for RevocationDetails
impl UnwindSafe for RevocationDetails
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