[][src]Struct iota_client::core::AttachToTangleBuilder

pub struct AttachToTangleBuilder { /* fields omitted */ }

Builder to construct attachToTangle API

Implementations

impl AttachToTangleBuilder[src]

pub fn trunk_transaction(self, trunk_transaction: &Hash) -> Self[src]

Set trunk transaction hash

pub fn branch_transaction(self, branch_transaction: &Hash) -> Self[src]

Set branch transaction hash

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

Set difficulty of PoW

pub fn trytes(self, trytes: &[Transaction]) -> Self[src]

Add slice of transaction trytes. When sending transactions in a bundle, make sure that the trytes of the last transaction in the bundle are in index 0 of the array.

pub async fn send(self) -> Result<AttachToTangleResponse>[src]

Send attachToTangle request

Trait Implementations

impl Debug for AttachToTangleBuilder[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, 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>,