pub struct TransactionManagerConfig {
pub consolidation: ConsolidationConfig,
pub limits: LimitConfig,
pub activity: ActivityMonitorConfig,
pub auto_consolidate: bool,
}Expand description
Transaction manager configuration
Fields§
§consolidation: ConsolidationConfigUTXO consolidation config
limits: LimitConfigTransaction limits config
activity: ActivityMonitorConfigActivity monitoring config
auto_consolidate: boolEnable automatic UTXO consolidation
Trait Implementations§
Source§impl Clone for TransactionManagerConfig
impl Clone for TransactionManagerConfig
Source§fn clone(&self) -> TransactionManagerConfig
fn clone(&self) -> TransactionManagerConfig
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 Debug for TransactionManagerConfig
impl Debug for TransactionManagerConfig
Auto Trait Implementations§
impl Freeze for TransactionManagerConfig
impl RefUnwindSafe for TransactionManagerConfig
impl Send for TransactionManagerConfig
impl Sync for TransactionManagerConfig
impl Unpin for TransactionManagerConfig
impl UnwindSafe for TransactionManagerConfig
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