#[non_exhaustive]pub enum AttestationStatement {
None(NoneAttestationStatement),
Packed(PackedAttestationStatement),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None(NoneAttestationStatement)
Packed(PackedAttestationStatement)
Trait Implementations§
Source§impl Clone for AttestationStatement
impl Clone for AttestationStatement
Source§fn clone(&self) -> AttestationStatement
fn clone(&self) -> AttestationStatement
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 AttestationStatement
impl Debug for AttestationStatement
Source§impl PartialEq for AttestationStatement
impl PartialEq for AttestationStatement
Source§impl Serialize for AttestationStatement
impl Serialize for AttestationStatement
impl Eq for AttestationStatement
impl StructuralPartialEq for AttestationStatement
Auto Trait Implementations§
impl Freeze for AttestationStatement
impl RefUnwindSafe for AttestationStatement
impl Send for AttestationStatement
impl Sync for AttestationStatement
impl Unpin for AttestationStatement
impl UnwindSafe for AttestationStatement
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