[][src]Struct elements::Proof

pub struct Proof {
    pub challenge: Script,
    pub solution: Script,
}

Block proof, which replaces PoW with an arbitrary script satisfaction

Fields

challenge: Script

Block "public key"

solution: Script

Satisfying witness to the above challenge, or nothing

Trait Implementations

impl PartialEq<Proof> for Proof[src]

impl Eq for Proof[src]

impl Default for Proof[src]

impl Clone for Proof[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Hash for Proof[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Proof[src]

impl<D: Decoder> Decodable<D> for Proof[src]

impl<S: Encoder> Encodable<S> for Proof[src]

Auto Trait Implementations

impl Send for Proof

impl Unpin for Proof

impl Sync for Proof

impl UnwindSafe for Proof

impl RefUnwindSafe for Proof

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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