[][src]Struct cashweb_relay::stamp::Stamp

pub struct Stamp {
    pub stamp_type: i32,
    pub stamp_outpoints: Vec<StampOutpoints>,
}

Represents a stamp. This is used within Message in order to attach value.

Fields

stamp_type: i32

The stamp type.

stamp_outpoints: Vec<StampOutpoints>

A collection of stamp outpoints.

Implementations

impl Stamp[src]

pub fn stamp_type(&self) -> StampType[src]

Returns the enum value of stamp_type, or the default if the field is set to an invalid enum value.

pub fn set_stamp_type(&mut self, value: StampType)[src]

Sets stamp_type to the provided enum value.

impl Stamp[src]

pub fn verify_stamp(
    &self,
    payload_digest: &[u8; 32],
    destination_public_key: &PublicKey
) -> Result<Vec<Transaction>, StampError>
[src]

Verify that the stamp covers the payload_digest.

Trait Implementations

impl Clone for Stamp[src]

impl Debug for Stamp[src]

impl Default for Stamp[src]

impl Message for Stamp[src]

impl PartialEq<Stamp> for Stamp[src]

impl StructuralPartialEq for Stamp[src]

Auto Trait Implementations

impl RefUnwindSafe for Stamp

impl Send for Stamp

impl Sync for Stamp

impl Unpin for Stamp

impl UnwindSafe for Stamp

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.