pub struct RuntimeData {
pub nonce: String,
pub tee_pubkey: TeePubKey,
}
Expand description
Data generated during the attestation process between client and server. Relevant only to the client-server pairing.
Fields§
§nonce: String
Nonce string generated by server.
tee_pubkey: TeePubKey
TEE public key generated by client.
Trait Implementations§
Source§impl Clone for RuntimeData
impl Clone for RuntimeData
Source§fn clone(&self) -> RuntimeData
fn clone(&self) -> RuntimeData
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 RuntimeData
impl Debug for RuntimeData
Source§impl<'de> Deserialize<'de> for RuntimeData
impl<'de> Deserialize<'de> for RuntimeData
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 RuntimeData
impl RefUnwindSafe for RuntimeData
impl Send for RuntimeData
impl Sync for RuntimeData
impl Unpin for RuntimeData
impl UnwindSafe for RuntimeData
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