Enum bdk_wallet::tx_builder::ChangeSpendPolicy
source · pub enum ChangeSpendPolicy {
ChangeAllowed,
OnlyChange,
ChangeForbidden,
}
Expand description
Policy regarding the use of change outputs when creating a transaction
Variants§
ChangeAllowed
Use both change and non-change outputs (default)
OnlyChange
Only use change outputs (see TxBuilder::only_spend_change
)
ChangeForbidden
Only use non-change outputs (see TxBuilder::do_not_spend_change
)
Trait Implementations§
source§impl Clone for ChangeSpendPolicy
impl Clone for ChangeSpendPolicy
source§fn clone(&self) -> ChangeSpendPolicy
fn clone(&self) -> ChangeSpendPolicy
Returns a copy 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 ChangeSpendPolicy
impl Debug for ChangeSpendPolicy
source§impl Default for ChangeSpendPolicy
impl Default for ChangeSpendPolicy
source§fn default() -> ChangeSpendPolicy
fn default() -> ChangeSpendPolicy
Returns the “default value” for a type. Read more
source§impl Hash for ChangeSpendPolicy
impl Hash for ChangeSpendPolicy
source§impl Ord for ChangeSpendPolicy
impl Ord for ChangeSpendPolicy
source§fn cmp(&self, other: &ChangeSpendPolicy) -> Ordering
fn cmp(&self, other: &ChangeSpendPolicy) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ChangeSpendPolicy
impl PartialEq for ChangeSpendPolicy
source§fn eq(&self, other: &ChangeSpendPolicy) -> bool
fn eq(&self, other: &ChangeSpendPolicy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ChangeSpendPolicy
impl PartialOrd for ChangeSpendPolicy
source§fn partial_cmp(&self, other: &ChangeSpendPolicy) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangeSpendPolicy) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ChangeSpendPolicy
impl Eq for ChangeSpendPolicy
impl StructuralPartialEq for ChangeSpendPolicy
Auto Trait Implementations§
impl Freeze for ChangeSpendPolicy
impl RefUnwindSafe for ChangeSpendPolicy
impl Send for ChangeSpendPolicy
impl Sync for ChangeSpendPolicy
impl Unpin for ChangeSpendPolicy
impl UnwindSafe for ChangeSpendPolicy
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more