Struct lightning::ln::channelmanager::CounterpartyForwardingInfo
source · pub struct CounterpartyForwardingInfo {
pub fee_base_msat: u32,
pub fee_proportional_millionths: u32,
pub cltv_expiry_delta: u16,
}
Expand description
Information needed for constructing an invoice route hint for this channel.
Fields§
§fee_base_msat: u32
Base routing fee in millisatoshis.
fee_proportional_millionths: u32
Amount in millionths of a satoshi the channel will charge per transferred satoshi.
cltv_expiry_delta: u16
The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
such that the outgoing HTLC is forwardable to this counterparty. See msgs::ChannelUpdate
’s
cltv_expiry_delta
for more details.
Trait Implementations§
source§impl Clone for CounterpartyForwardingInfo
impl Clone for CounterpartyForwardingInfo
source§fn clone(&self) -> CounterpartyForwardingInfo
fn clone(&self) -> CounterpartyForwardingInfo
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 CounterpartyForwardingInfo
impl Debug for CounterpartyForwardingInfo
source§impl From<CounterpartyForwardingInfo> for PaymentRelay
impl From<CounterpartyForwardingInfo> for PaymentRelay
source§fn from(info: CounterpartyForwardingInfo) -> Self
fn from(info: CounterpartyForwardingInfo) -> Self
Converts to this type from the input type.
source§impl PartialEq for CounterpartyForwardingInfo
impl PartialEq for CounterpartyForwardingInfo
source§fn eq(&self, other: &CounterpartyForwardingInfo) -> bool
fn eq(&self, other: &CounterpartyForwardingInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Writeable for CounterpartyForwardingInfo
impl Writeable for CounterpartyForwardingInfo
impl StructuralPartialEq for CounterpartyForwardingInfo
Auto Trait Implementations§
impl RefUnwindSafe for CounterpartyForwardingInfo
impl Send for CounterpartyForwardingInfo
impl Sync for CounterpartyForwardingInfo
impl Unpin for CounterpartyForwardingInfo
impl UnwindSafe for CounterpartyForwardingInfo
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