pub enum CompactCertificationDocument {
V10(CompactCertificationDocumentV10),
}Expand description
Wrap an Compact certification document (in block content)
Variants§
V10(CompactCertificationDocumentV10)
Compact certification document v10
Trait Implementations§
Source§impl Clone for CompactCertificationDocument
impl Clone for CompactCertificationDocument
Source§fn clone(&self) -> CompactCertificationDocument
fn clone(&self) -> CompactCertificationDocument
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 CompactTextDocument for CompactCertificationDocument
impl CompactTextDocument for CompactCertificationDocument
Source§fn as_compact_text(&self) -> String
fn as_compact_text(&self) -> String
Generate document compact text.
the compact format is the one used in the blocks. Read more
Source§impl Debug for CompactCertificationDocument
impl Debug for CompactCertificationDocument
Source§impl<'de> Deserialize<'de> for CompactCertificationDocument
impl<'de> Deserialize<'de> for CompactCertificationDocument
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
Source§impl PartialEq for CompactCertificationDocument
impl PartialEq for CompactCertificationDocument
Source§fn eq(&self, other: &CompactCertificationDocument) -> bool
fn eq(&self, other: &CompactCertificationDocument) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CompactCertificationDocument
impl Eq for CompactCertificationDocument
impl StructuralPartialEq for CompactCertificationDocument
Auto Trait Implementations§
impl Freeze for CompactCertificationDocument
impl RefUnwindSafe for CompactCertificationDocument
impl Send for CompactCertificationDocument
impl Sync for CompactCertificationDocument
impl Unpin for CompactCertificationDocument
impl UnwindSafe for CompactCertificationDocument
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more