pub struct AttesterRecord {
pub kid: String,
pub pubkey: Vec<u8>,
pub alg: String,
pub status: String,
pub revoked_at: Option<u64>,
pub expires_at: Option<u64>,
}Fields§
§kid: String§pubkey: Vec<u8>§alg: String§status: String§revoked_at: Option<u64>§expires_at: Option<u64>Trait Implementations§
Source§impl Clone for AttesterRecord
impl Clone for AttesterRecord
Source§fn clone(&self) -> AttesterRecord
fn clone(&self) -> AttesterRecord
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 AttesterRecord
impl Debug for AttesterRecord
Source§impl<'de> Deserialize<'de> for AttesterRecord
impl<'de> Deserialize<'de> for AttesterRecord
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 AttesterRecord
impl RefUnwindSafe for AttesterRecord
impl Send for AttesterRecord
impl Sync for AttesterRecord
impl Unpin for AttesterRecord
impl UnwindSafe for AttesterRecord
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