pub enum ReceiptReplay {
Enrollment(EnrollBound),
CredentialAttach(AttachBound),
}Expand description
Complete canonical receipt replay payload used by Bound/UnboundReceipt.
Variants§
Enrollment(EnrollBound)
Enrollment canonical receipt; generation/cursor/marker constants are
enforced by EnrollBound.
CredentialAttach(AttachBound)
Credential-attach canonical receipt; successor generation and
cursor/marker relations are enforced by AttachBound.
Trait Implementations§
Source§impl Clone for ReceiptReplay
impl Clone for ReceiptReplay
Source§fn clone(&self) -> ReceiptReplay
fn clone(&self) -> ReceiptReplay
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReceiptReplay
impl Debug for ReceiptReplay
impl Eq for ReceiptReplay
Source§impl PartialEq for ReceiptReplay
impl PartialEq for ReceiptReplay
impl StructuralPartialEq for ReceiptReplay
Auto Trait Implementations§
impl Freeze for ReceiptReplay
impl RefUnwindSafe for ReceiptReplay
impl Send for ReceiptReplay
impl Sync for ReceiptReplay
impl Unpin for ReceiptReplay
impl UnsafeUnpin for ReceiptReplay
impl UnwindSafe for ReceiptReplay
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