pub struct RevocationList {
pub issuer_id: String,
pub updated_at: i64,
pub revoked_certs: Vec<String>,
pub signature: HybridSignature,
}Expand description
Signed list of revoked cert IDs, served by the issuer.
Fields§
§issuer_id: String§updated_at: i64§revoked_certs: Vec<String>§signature: HybridSignatureTrait Implementations§
Source§impl Clone for RevocationList
impl Clone for RevocationList
Source§fn clone(&self) -> RevocationList
fn clone(&self) -> RevocationList
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 RevocationList
impl Debug for RevocationList
Source§impl<'de> Deserialize<'de> for RevocationList
impl<'de> Deserialize<'de> for RevocationList
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
Auto Trait Implementations§
impl Freeze for RevocationList
impl RefUnwindSafe for RevocationList
impl Send for RevocationList
impl Sync for RevocationList
impl Unpin for RevocationList
impl UnsafeUnpin for RevocationList
impl UnwindSafe for RevocationList
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