Enum dubp_documents::revocation::RevocationDocument [−][src]
Wrap an Revocation document.
Must be created by parsing a text document or using a builder.
Variants
Revocation document v10
Trait Implementations
impl Clone for RevocationDocument[src]
fn clone(&self) -> RevocationDocument[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for RevocationDocument[src]
impl<'de> Deserialize<'de> for RevocationDocument[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Document for RevocationDocument[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 RevocationDocument[src]
impl PartialEq<RevocationDocument> for RevocationDocument[src]
fn eq(&self, other: &RevocationDocument) -> bool[src]
fn ne(&self, other: &RevocationDocument) -> bool[src]
impl Serialize for RevocationDocument[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for RevocationDocument[src]
impl StructuralPartialEq for RevocationDocument[src]
impl ToStringObject for RevocationDocument[src]
type StringObject = RevocationDocumentStringified
Generated string object
fn to_string_object(&self) -> Self::StringObject[src]
Auto Trait Implementations
impl RefUnwindSafe for RevocationDocument
impl Send for RevocationDocument
impl Sync for RevocationDocument
impl Unpin for RevocationDocument
impl UnwindSafe for RevocationDocument
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>,