Struct tari_crypto::range_proof::FullRewindResult[][src]

pub struct FullRewindResult<K> where
    K: SecretKey
{ pub committed_value: u64, pub proof_message: [u8; 21], pub blinding_factor: K, }

Fields

committed_value: u64proof_message: [u8; 21]blinding_factor: K

Implementations

impl<K> FullRewindResult<K> where
    K: SecretKey
[src]

pub fn new(
    committed_value: u64,
    proof_message: [u8; 21],
    blinding_factor: K
) -> Self
[src]

Trait Implementations

impl<K: Debug> Debug for FullRewindResult<K> where
    K: SecretKey
[src]

impl<K: PartialEq> PartialEq<FullRewindResult<K>> for FullRewindResult<K> where
    K: SecretKey
[src]

impl<K> StructuralPartialEq for FullRewindResult<K> where
    K: SecretKey
[src]

Auto Trait Implementations

impl<K> RefUnwindSafe for FullRewindResult<K> where
    K: RefUnwindSafe

impl<K> Send for FullRewindResult<K> where
    K: Send

impl<K> Sync for FullRewindResult<K> where
    K: Sync

impl<K> Unpin for FullRewindResult<K> where
    K: Unpin

impl<K> UnwindSafe for FullRewindResult<K> where
    K: UnwindSafe

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, U> Cast<U> for T where
    U: FromCast<T>, 

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,