[][src]Struct monero::util::ringct::RctSigBase

pub struct RctSigBase {
    pub rct_type: RctType,
    pub txn_fee: VarInt,
    pub pseudo_outs: Vec<Key>,
    pub ecdh_info: Vec<EcdhInfo>,
    pub out_pk: Vec<CtKey>,
}

RingCT base signature format

Fields

rct_type: RctType

The RingCT type of signatures

txn_fee: VarInt

Transaction fee

pseudo_outs: Vec<Key>

Pseudo outs key vector

ecdh_info: Vec<EcdhInfo>

Ecdh info vector

out_pk: Vec<CtKey>

Out pk vector

Implementations

impl RctSigBase[src]

pub fn consensus_decode<D: Decoder>(
    d: &mut D,
    inputs: usize,
    outputs: usize
) -> Result<Option<RctSigBase>, Error>
[src]

Decode a RingCT base signature given the number of inputs and outputs of the transaction

Trait Implementations

impl Clone for RctSigBase[src]

impl Debug for RctSigBase[src]

impl Display for RctSigBase[src]

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

impl Hashable for RctSigBase[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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.