pub struct RouteHintHop {
pub src_node_id: NodeId,
pub short_channel_id: ShortChannelId,
pub fee_base_msat: u32,
pub fee_proportional_millionths: u32,
pub cltv_expiry_delta: u16,
}Expand description
A single hop in a route hint.
Fields§
§src_node_id: NodeIdPublic key of the node at the start of this hop
short_channel_id: ShortChannelIdShort channel ID
fee_base_msat: u32Base fee in millisatoshis
fee_proportional_millionths: u32Proportional fee in millionths
cltv_expiry_delta: u16CLTV expiry delta
Implementations§
Source§impl RouteHintHop
impl RouteHintHop
Trait Implementations§
Source§impl Clone for RouteHintHop
impl Clone for RouteHintHop
Source§fn clone(&self) -> RouteHintHop
fn clone(&self) -> RouteHintHop
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 RouteHintHop
impl Debug for RouteHintHop
Source§impl PartialEq for RouteHintHop
impl PartialEq for RouteHintHop
impl Eq for RouteHintHop
impl StructuralPartialEq for RouteHintHop
Auto Trait Implementations§
impl Freeze for RouteHintHop
impl RefUnwindSafe for RouteHintHop
impl Send for RouteHintHop
impl Sync for RouteHintHop
impl Unpin for RouteHintHop
impl UnwindSafe for RouteHintHop
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