pub struct Proof {
pub id: Option<String>,
pub proof_type: String,
pub cryptosuite: Option<String>,
pub proof_purpose: String,
pub verification_method: String,
pub created: Option<DateTime<Utc>>,
pub expires: Option<DateTime<Utc>>,
pub domain: Option<Domain>,
pub challenge: Option<String>,
pub proof_value: Option<String>,
pub previous_proof: Option<PreviousProofs>,
pub nonce: Option<String>,
}Fields§
§id: Option<String>§proof_type: String§cryptosuite: Option<String>§proof_purpose: String§verification_method: String§created: Option<DateTime<Utc>>§expires: Option<DateTime<Utc>>§domain: Option<Domain>§challenge: Option<String>§proof_value: Option<String>§previous_proof: Option<PreviousProofs>§nonce: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Proof
impl<'de> Deserialize<'de> for Proof
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
impl StructuralPartialEq for Proof
Auto Trait Implementations§
impl Freeze for Proof
impl RefUnwindSafe for Proof
impl Send for Proof
impl Sync for Proof
impl Unpin for Proof
impl UnwindSafe for Proof
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