pub struct RevocationListInfos { /* private fields */ }Expand description
Represents collection of revocation list infos which can be sent in license challenge.
Implementations§
Source§impl RevocationListInfos
impl RevocationListInfos
Sourcepub fn iter(&self) -> impl Iterator<Item = &RevocationListInfo>
pub fn iter(&self) -> impl Iterator<Item = &RevocationListInfo>
Returns an iterator to revocation list infos.
Sourcepub fn from_revocation_lists(rev_lists: &RevocationLists) -> Self
pub fn from_revocation_lists(rev_lists: &RevocationLists) -> Self
Creates revocation list infos from revocation lists.
Sourcepub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
pub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
Constructs new RevocationListInfos by deserializing bytes in PRL format.
Sourcepub fn from_prl(path: impl AsRef<Path>) -> Result<Self, Error>
pub fn from_prl(path: impl AsRef<Path>) -> Result<Self, Error>
Constructs new RevocationListInfos by deserializing bytes from prl file.
Trait Implementations§
Source§impl Clone for RevocationListInfos
impl Clone for RevocationListInfos
Source§fn clone(&self) -> RevocationListInfos
fn clone(&self) -> RevocationListInfos
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 RevocationListInfos
impl Debug for RevocationListInfos
Source§impl Default for RevocationListInfos
impl Default for RevocationListInfos
Source§fn default() -> RevocationListInfos
fn default() -> RevocationListInfos
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RevocationListInfos
impl RefUnwindSafe for RevocationListInfos
impl Send for RevocationListInfos
impl Sync for RevocationListInfos
impl Unpin for RevocationListInfos
impl UnsafeUnpin for RevocationListInfos
impl UnwindSafe for RevocationListInfos
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