pub struct Revocations {
pub schema_version: u32,
pub revocations: Vec<RevocationEntry>,
pub meta: Meta,
}Fields§
§schema_version: u32§revocations: Vec<RevocationEntry>Empty list is the steady state.
meta: MetaTrait Implementations§
Source§impl Clone for Revocations
impl Clone for Revocations
Source§fn clone(&self) -> Revocations
fn clone(&self) -> Revocations
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 Revocations
impl Debug for Revocations
Source§impl<'de> Deserialize<'de> for Revocations
impl<'de> Deserialize<'de> for Revocations
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 PartialEq for Revocations
impl PartialEq for Revocations
Source§impl Serialize for Revocations
impl Serialize for Revocations
impl StructuralPartialEq for Revocations
Auto Trait Implementations§
impl Freeze for Revocations
impl RefUnwindSafe for Revocations
impl Send for Revocations
impl Sync for Revocations
impl Unpin for Revocations
impl UnwindSafe for Revocations
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