Struct lightning::ln::msgs::ClosingSignedFeeRange
source · pub struct ClosingSignedFeeRange {
pub min_fee_satoshis: u64,
pub max_fee_satoshis: u64,
}
Expand description
The minimum and maximum fees which the sender is willing to place on the closing transaction.
This is provided in ClosingSigned
by both sides to indicate the fee range they are willing
to use.
Fields§
§min_fee_satoshis: u64
The minimum absolute fee, in satoshis, which the sender is willing to place on the closing transaction.
max_fee_satoshis: u64
The maximum absolute fee, in satoshis, which the sender is willing to place on the closing transaction.
Trait Implementations§
source§impl Clone for ClosingSignedFeeRange
impl Clone for ClosingSignedFeeRange
source§fn clone(&self) -> ClosingSignedFeeRange
fn clone(&self) -> ClosingSignedFeeRange
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 ClosingSignedFeeRange
impl Debug for ClosingSignedFeeRange
source§impl Hash for ClosingSignedFeeRange
impl Hash for ClosingSignedFeeRange
source§impl PartialEq for ClosingSignedFeeRange
impl PartialEq for ClosingSignedFeeRange
source§fn eq(&self, other: &ClosingSignedFeeRange) -> bool
fn eq(&self, other: &ClosingSignedFeeRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Readable for ClosingSignedFeeRange
impl Readable for ClosingSignedFeeRange
source§impl Writeable for ClosingSignedFeeRange
impl Writeable for ClosingSignedFeeRange
impl Eq for ClosingSignedFeeRange
impl StructuralEq for ClosingSignedFeeRange
impl StructuralPartialEq for ClosingSignedFeeRange
Auto Trait Implementations§
impl RefUnwindSafe for ClosingSignedFeeRange
impl Send for ClosingSignedFeeRange
impl Sync for ClosingSignedFeeRange
impl Unpin for ClosingSignedFeeRange
impl UnwindSafe for ClosingSignedFeeRange
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