pub struct CrlRevocation {
pub jti: String,
pub agent_did: String,
pub reason: Option<String>,
pub revoked_at: i64,
}Fields§
§jti: String§agent_did: String§reason: Option<String>§revoked_at: i64Trait Implementations§
Source§impl Clone for CrlRevocation
impl Clone for CrlRevocation
Source§fn clone(&self) -> CrlRevocation
fn clone(&self) -> CrlRevocation
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 CrlRevocation
impl Debug for CrlRevocation
Source§impl<'de> Deserialize<'de> for CrlRevocation
impl<'de> Deserialize<'de> for CrlRevocation
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 CrlRevocation
impl PartialEq for CrlRevocation
Source§impl Serialize for CrlRevocation
impl Serialize for CrlRevocation
impl Eq for CrlRevocation
impl StructuralPartialEq for CrlRevocation
Auto Trait Implementations§
impl Freeze for CrlRevocation
impl RefUnwindSafe for CrlRevocation
impl Send for CrlRevocation
impl Sync for CrlRevocation
impl Unpin for CrlRevocation
impl UnsafeUnpin for CrlRevocation
impl UnwindSafe for CrlRevocation
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