pub struct TransactionBuilderConfigBuilder { /* private fields */ }Implementations§
Source§impl TransactionBuilderConfigBuilder
impl TransactionBuilderConfigBuilder
pub fn new() -> Self
pub fn fee_algo(self, fee_algo: LinearFee) -> Self
pub fn coins_per_utxo_byte(self, coins_per_utxo_byte: Coin) -> Self
pub fn pool_deposit(self, pool_deposit: u64) -> Self
pub fn key_deposit(self, key_deposit: u64) -> 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 ex_unit_prices(self, ex_unit_prices: ExUnitPrices) -> Self
pub fn cost_models(self, cost_models: CostModels) -> Self
pub fn collateral_percentage(self, collateral_percentage: u32) -> Self
pub fn max_collateral_inputs(self, max_collateral_inputs: u32) -> Self
pub fn build(self) -> Result<TransactionBuilderConfig, TxBuilderError>
Trait Implementations§
Source§impl Clone for TransactionBuilderConfigBuilder
impl Clone for TransactionBuilderConfigBuilder
Source§fn clone(&self) -> TransactionBuilderConfigBuilder
fn clone(&self) -> TransactionBuilderConfigBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for TransactionBuilderConfigBuilder
impl Default for TransactionBuilderConfigBuilder
Source§fn default() -> TransactionBuilderConfigBuilder
fn default() -> TransactionBuilderConfigBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TransactionBuilderConfigBuilder
impl RefUnwindSafe for TransactionBuilderConfigBuilder
impl Send for TransactionBuilderConfigBuilder
impl Sync for TransactionBuilderConfigBuilder
impl Unpin for TransactionBuilderConfigBuilder
impl UnsafeUnpin for TransactionBuilderConfigBuilder
impl UnwindSafe for TransactionBuilderConfigBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more