pub struct ReceiptLineageVerification {
pub receipt_id: String,
pub request_id: Option<String>,
pub session_id: Option<String>,
pub session_anchor_id: Option<String>,
pub session_anchor_verified: bool,
pub parent_request_verified: bool,
pub parent_receipt_verified: bool,
pub replay_protected: bool,
}Fields§
§receipt_id: String§request_id: Option<String>§session_id: Option<String>§session_anchor_id: Option<String>§session_anchor_verified: bool§parent_request_verified: bool§parent_receipt_verified: bool§replay_protected: boolImplementations§
Source§impl ReceiptLineageVerification
impl ReceiptLineageVerification
pub fn delegated_call_chain_bound(&self) -> bool
Trait Implementations§
Source§impl Clone for ReceiptLineageVerification
impl Clone for ReceiptLineageVerification
Source§fn clone(&self) -> ReceiptLineageVerification
fn clone(&self) -> ReceiptLineageVerification
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 ReceiptLineageVerification
impl Debug for ReceiptLineageVerification
Source§impl Default for ReceiptLineageVerification
impl Default for ReceiptLineageVerification
Source§fn default() -> ReceiptLineageVerification
fn default() -> ReceiptLineageVerification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReceiptLineageVerification
impl<'de> Deserialize<'de> for ReceiptLineageVerification
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 Eq for ReceiptLineageVerification
impl StructuralPartialEq for ReceiptLineageVerification
Auto Trait Implementations§
impl Freeze for ReceiptLineageVerification
impl RefUnwindSafe for ReceiptLineageVerification
impl Send for ReceiptLineageVerification
impl Sync for ReceiptLineageVerification
impl Unpin for ReceiptLineageVerification
impl UnsafeUnpin for ReceiptLineageVerification
impl UnwindSafe for ReceiptLineageVerification
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.