pub struct RevokedCertificate {
pub certificate: Option<String>,
pub hex_serial_number: Option<String>,
pub revocation_reason: Option<String>,
}Expand description
Describes a revoked Certificate.
This type is not used in any activity, and only used as part of another schema.
Fields§
§certificate: Option<String>The resource name for the Certificate in the format projects/*/locations/*/caPools/*/certificates/*.
hex_serial_number: Option<String>The serial number of the Certificate.
revocation_reason: Option<String>The reason the Certificate was revoked.
Trait Implementations§
Source§impl Clone for RevokedCertificate
impl Clone for RevokedCertificate
Source§fn clone(&self) -> RevokedCertificate
fn clone(&self) -> RevokedCertificate
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 RevokedCertificate
impl Debug for RevokedCertificate
Source§impl Default for RevokedCertificate
impl Default for RevokedCertificate
Source§fn default() -> RevokedCertificate
fn default() -> RevokedCertificate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RevokedCertificate
impl<'de> Deserialize<'de> for RevokedCertificate
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 RevokedCertificate
impl Serialize for RevokedCertificate
impl Part for RevokedCertificate
Auto Trait Implementations§
impl Freeze for RevokedCertificate
impl RefUnwindSafe for RevokedCertificate
impl Send for RevokedCertificate
impl Sync for RevokedCertificate
impl Unpin for RevokedCertificate
impl UnwindSafe for RevokedCertificate
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