pub struct RevocationResponse(/* private fields */);Expand description
This type represents a Certificate Revocation Response as defined in section 3.5.2 of RFC6492.
Implementations§
Source§impl RevocationResponse
impl RevocationResponse
pub fn new(key: KeyElement) -> Self
Methods from Deref<Target = KeyElement>§
pub fn class_name(&self) -> &ResourceClassName
pub fn key(&self) -> &KeyIdentifier
Trait Implementations§
Source§impl Clone for RevocationResponse
impl Clone for RevocationResponse
Source§fn clone(&self) -> RevocationResponse
fn clone(&self) -> RevocationResponse
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 RevocationResponse
impl Debug for RevocationResponse
Source§impl Deref for RevocationResponse
impl Deref for RevocationResponse
Source§impl<'de> Deserialize<'de> for RevocationResponse
impl<'de> Deserialize<'de> for RevocationResponse
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 From<&RevocationRequest> for RevocationResponse
impl From<&RevocationRequest> for RevocationResponse
Source§fn from(req: &RevocationRequest) -> Self
fn from(req: &RevocationRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RevocationResponse
impl PartialEq for RevocationResponse
Source§impl Serialize for RevocationResponse
impl Serialize for RevocationResponse
impl Eq for RevocationResponse
impl StructuralPartialEq for RevocationResponse
Auto Trait Implementations§
impl Freeze for RevocationResponse
impl RefUnwindSafe for RevocationResponse
impl Send for RevocationResponse
impl Sync for RevocationResponse
impl Unpin for RevocationResponse
impl UnwindSafe for RevocationResponse
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