pub struct RevocationPush {
pub issuer_id: String,
pub seq_no: i64,
pub entries: Vec<String>,
pub pushed_at: i64,
pub signature: HybridSignature,
}Expand description
v1.1 signed push notification of newly revoked cert IDs.
Fields§
§issuer_id: String§seq_no: i64§entries: Vec<String>§pushed_at: i64§signature: HybridSignatureTrait Implementations§
Source§impl Clone for RevocationPush
impl Clone for RevocationPush
Source§fn clone(&self) -> RevocationPush
fn clone(&self) -> RevocationPush
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 RevocationPush
impl Debug for RevocationPush
Source§impl<'de> Deserialize<'de> for RevocationPush
impl<'de> Deserialize<'de> for RevocationPush
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 RevocationPush
impl RefUnwindSafe for RevocationPush
impl Send for RevocationPush
impl Sync for RevocationPush
impl Unpin for RevocationPush
impl UnsafeUnpin for RevocationPush
impl UnwindSafe for RevocationPush
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