[][src]Struct hal::lightning::RouteHopInfo

pub struct RouteHopInfo {
    pub pubkey: HexBytes,
    pub short_channel_id: u64,
    pub short_channel_id_hex: HexBytes,
    pub short_channel_id_hrf: String,
    pub fee_base_msat: u32,
    pub fee_proportional_millionths: u32,
    pub cltv_expiry_delta: u16,
}

Fields

pubkey: HexBytesshort_channel_id: u64short_channel_id_hex: HexBytesshort_channel_id_hrf: Stringfee_base_msat: u32fee_proportional_millionths: u32cltv_expiry_delta: u16

Trait Implementations

impl Clone for RouteHopInfo[src]

impl Debug for RouteHopInfo[src]

impl<'de> Deserialize<'de> for RouteHopInfo[src]

impl Eq for RouteHopInfo[src]

impl GetInfo<RouteHopInfo> for RouteHop[src]

impl PartialEq<RouteHopInfo> for RouteHopInfo[src]

impl Serialize for RouteHopInfo[src]

impl StructuralEq for RouteHopInfo[src]

impl StructuralPartialEq for RouteHopInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.