pub struct RevocationLists { /* private fields */ }Expand description
Represents collection of revocation lists which can be retrieved from the challenge response.
Implementations§
Source§impl RevocationLists
impl RevocationLists
Sourcepub fn from_xml_str(text: &str) -> Result<Self, Error>
pub fn from_xml_str(text: &str) -> Result<Self, Error>
Constructs revocation lists from an XML string.
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if RevocationLists does not contain any entry.
Sourcepub fn get_revoked_public_key_digests(
&self,
) -> Result<RevokedPublicKeyDigests, Error>
pub fn get_revoked_public_key_digests( &self, ) -> Result<RevokedPublicKeyDigests, Error>
Returns revoked public key digests.
Trait Implementations§
Source§impl Clone for RevocationLists
impl Clone for RevocationLists
Source§fn clone(&self) -> RevocationLists
fn clone(&self) -> RevocationLists
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RevocationLists
impl Debug for RevocationLists
Source§impl Default for RevocationLists
impl Default for RevocationLists
Source§fn default() -> RevocationLists
fn default() -> RevocationLists
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RevocationLists
impl RefUnwindSafe for RevocationLists
impl Send for RevocationLists
impl Sync for RevocationLists
impl Unpin for RevocationLists
impl UnsafeUnpin for RevocationLists
impl UnwindSafe for RevocationLists
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