[][src]Struct iota_client::extended::PrepareTransfersBuilder

pub struct PrepareTransfersBuilder<'a> { /* fields omitted */ }

Builder to construct PrepareTransfers API

Methods

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

pub fn seed(self, seed: &'a IotaSeed<Kerl>) -> Self[src]

Add iota seed

pub fn transfers(self, transfers: Vec<Transfer>) -> Self[src]

Add transfers

pub fn security(self, security: u8) -> Self[src]

Set security level

pub fn inputs(self, inputs: Vec<Input>) -> Self[src]

Add custom inputs. It is always better to provide inputs yourself since it will have to seaching valid inputs from the beginning.

pub fn remainder(self, remainder: Address) -> Self[src]

Add custom remainder

pub async fn build(self) -> Result<Bundle>[src]

Send PrepareTransfers request

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