[][src]Struct jlib::base::local_sign::sign_brokerage::SignTxBrokerage

pub struct SignTxBrokerage<'a> {
    pub fields: Vec<&'a str>,
    pub keypair: &'a Keypair,
    pub tx_json: &'a SetBrokerageTxJson,
    pub sequence: u32,
    pub output: SignedTxJson<'a>,
}

Fields

fields: Vec<&'a str>keypair: &'a Keypairtx_json: &'a SetBrokerageTxJsonsequence: u32output: SignedTxJson<'a>

Implementations

impl<'a> SignTxBrokerage<'a>[src]

pub fn with_params(
    keypair: &'a Keypair,
    tx_json: &'a SetBrokerageTxJson,
    sequence: u32
) -> Self
[src]

pub fn build(&mut self, sign_tx: &SignTx) -> String[src]

impl<'a> SignTxBrokerage<'a>[src]

pub fn prepare(&mut self, sign_tx: &SignTx)[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for SignTxBrokerage<'a>

impl<'a> !Send for SignTxBrokerage<'a>

impl<'a> !Sync for SignTxBrokerage<'a>

impl<'a> Unpin for SignTxBrokerage<'a>

impl<'a> !UnwindSafe for SignTxBrokerage<'a>

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> Downcast for T where
    T: Any

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, 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.