pub struct ClientCertificateRevocationListStatus {
pub code: Option<String>,
pub message: Option<String>,
}Expand description
Describes the state of a client certificate revocation list.
Fields§
§code: Option<String>The state of the client certificate revocation list.
message: Option<String>A message about the status of the client certificate revocation list, if applicable.
Trait Implementations§
Source§impl Clone for ClientCertificateRevocationListStatus
impl Clone for ClientCertificateRevocationListStatus
Source§fn clone(&self) -> ClientCertificateRevocationListStatus
fn clone(&self) -> ClientCertificateRevocationListStatus
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 Default for ClientCertificateRevocationListStatus
impl Default for ClientCertificateRevocationListStatus
Source§fn default() -> ClientCertificateRevocationListStatus
fn default() -> ClientCertificateRevocationListStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClientCertificateRevocationListStatus
impl PartialEq for ClientCertificateRevocationListStatus
Source§fn eq(&self, other: &ClientCertificateRevocationListStatus) -> bool
fn eq(&self, other: &ClientCertificateRevocationListStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientCertificateRevocationListStatus
Auto Trait Implementations§
impl Freeze for ClientCertificateRevocationListStatus
impl RefUnwindSafe for ClientCertificateRevocationListStatus
impl Send for ClientCertificateRevocationListStatus
impl Sync for ClientCertificateRevocationListStatus
impl Unpin for ClientCertificateRevocationListStatus
impl UnwindSafe for ClientCertificateRevocationListStatus
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