pub struct TransactionBuilderConfigBuilder { /* private fields */ }
Implementations
sourceimpl TransactionBuilderConfigBuilder
impl TransactionBuilderConfigBuilder
pub fn new() -> Self
pub fn fee_algo(&self, fee_algo: &LinearFee) -> Self
pub fn coins_per_utxo_word(&self, coins_per_utxo_word: &Coin) -> Self
pub fn pool_deposit(&self, pool_deposit: &BigNum) -> Self
pub fn key_deposit(&self, key_deposit: &BigNum) -> Self
pub fn max_value_size(&self, max_value_size: u32) -> Self
pub fn max_tx_size(&self, max_tx_size: u32) -> Self
pub fn prefer_pure_change(&self, prefer_pure_change: bool) -> Self
pub fn build(&self) -> Result<TransactionBuilderConfig, JsError>
Trait Implementations
sourceimpl Clone for TransactionBuilderConfigBuilder
impl Clone for TransactionBuilderConfigBuilder
sourcefn clone(&self) -> TransactionBuilderConfigBuilder
fn clone(&self) -> TransactionBuilderConfigBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for TransactionBuilderConfigBuilder
impl Send for TransactionBuilderConfigBuilder
impl Sync for TransactionBuilderConfigBuilder
impl Unpin for TransactionBuilderConfigBuilder
impl UnwindSafe for TransactionBuilderConfigBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more