Enum dubp_documents::certification::CertificationDocument [−][src]
Wrap an Certification document.
Must be created by parsing a text document or using a builder.
Variants
Certification document v10
Trait Implementations
impl Clone for CertificationDocument[src]
fn clone(&self) -> CertificationDocument[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CertificationDocument[src]
impl<'de> Deserialize<'de> for CertificationDocument[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Document for CertificationDocument[src]
type PublicKey = PubKeyEnum
Type of the PublicKey used by the document.
fn version(&self) -> usize[src]
fn currency(&self) -> &str[src]
fn blockstamp(&self) -> Blockstamp[src]
fn issuers(&self) -> SmallVec<[Self::PublicKey; 1]>[src]
fn signatures(&self) -> SmallVec<[<Self::PublicKey as PublicKey>::Signature; 1]>[src]
fn as_bytes(&self) -> BeefCow<'_, [u8]>[src]
fn verify_one_signature(
&self,
public_key: &Self::PublicKey,
signature: &<Self::PublicKey as PublicKey>::Signature
) -> Result<(), SigError>[src]
&self,
public_key: &Self::PublicKey,
signature: &<Self::PublicKey as PublicKey>::Signature
) -> Result<(), SigError>
fn verify_signatures(&self) -> Result<(), DocumentSigsErr>[src]
impl Eq for CertificationDocument[src]
impl PartialEq<CertificationDocument> for CertificationDocument[src]
fn eq(&self, other: &CertificationDocument) -> bool[src]
fn ne(&self, other: &CertificationDocument) -> bool[src]
impl Serialize for CertificationDocument[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for CertificationDocument[src]
impl StructuralPartialEq for CertificationDocument[src]
impl TextDocument for CertificationDocument[src]
type CompactTextDocument_ = CompactCertificationDocument
Type of associated compact document.
fn as_text(&self) -> &str[src]
fn to_compact_document(&self) -> Cow<'_, Self::CompactTextDocument_>[src]
fn as_text_with_signatures(&self) -> String[src]
fn generate_compact_text(&self) -> String[src]
impl ToStringObject for CertificationDocument[src]
type StringObject = CertificationDocumentStringified
Generated string object
fn to_string_object(&self) -> Self::StringObject[src]
Auto Trait Implementations
impl RefUnwindSafe for CertificationDocument
impl Send for CertificationDocument
impl Sync for CertificationDocument
impl Unpin for CertificationDocument
impl UnwindSafe for CertificationDocument
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,