Struct algonaut_transaction::builder::ConfigureAsset[][src]

pub struct ConfigureAsset { /* fields omitted */ }

Implementations

impl ConfigureAsset[src]

pub fn new() -> Self[src]

pub fn config_asset(self, config_asset: u64) -> Self[src]

pub fn total(self, total: u64) -> Self[src]

pub fn decimals(self, decimals: u32) -> Self[src]

pub fn default_frozen(self, default_frozen: bool) -> Self[src]

pub fn unit_name(self, unit_name: String) -> Self[src]

pub fn asset_name(self, asset_name: String) -> Self[src]

pub fn url(self, url: String) -> Self[src]

pub fn meta_data_hash(self, meta_data_hash: Vec<u8>) -> Self[src]

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

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

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

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

pub fn build(self) -> AssetConfigurationTransaction[src]

Trait Implementations

impl Default for ConfigureAsset[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> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,