Struct breez_sdk_liquid::lightning::routing::router::RouteParameters
pub struct RouteParameters {
pub payment_params: PaymentParameters,
pub final_value_msat: u64,
pub max_total_routing_fee_msat: Option<u64>,
}
Expand description
Parameters needed to find a Route
.
Passed to find_route
and build_route_from_hops
.
Fields§
§payment_params: PaymentParameters
The parameters of the failed payment path.
final_value_msat: u64
The amount in msats sent on the failed payment path.
max_total_routing_fee_msat: Option<u64>
The maximum total fees, in millisatoshi, that may accrue during route finding.
This limit also applies to the total fees that may arise while retrying failed payment paths.
Note that values below a few sats may result in some paths being spuriously ignored.
Implementations§
§impl RouteParameters
impl RouteParameters
pub fn from_payment_params_and_value(
payment_params: PaymentParameters,
final_value_msat: u64,
) -> RouteParameters
pub fn from_payment_params_and_value( payment_params: PaymentParameters, final_value_msat: u64, ) -> RouteParameters
Constructs RouteParameters
from the given PaymentParameters
and a payment amount.
Self::max_total_routing_fee_msat
defaults to 1% of the payment amount + 50 sats
Trait Implementations§
§impl Clone for RouteParameters
impl Clone for RouteParameters
§fn clone(&self) -> RouteParameters
fn clone(&self) -> RouteParameters
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 more§impl Debug for RouteParameters
impl Debug for RouteParameters
§impl Hash for RouteParameters
impl Hash for RouteParameters
§impl PartialEq for RouteParameters
impl PartialEq for RouteParameters
§impl Readable for RouteParameters
impl Readable for RouteParameters
§fn read<R>(reader: &mut R) -> Result<RouteParameters, DecodeError>where
R: Read,
fn read<R>(reader: &mut R) -> Result<RouteParameters, DecodeError>where
R: Read,
Reads a
Self
in from the given Read
.§impl Writeable for RouteParameters
impl Writeable for RouteParameters
impl Eq for RouteParameters
impl StructuralPartialEq for RouteParameters
Auto Trait Implementations§
impl Freeze for RouteParameters
impl RefUnwindSafe for RouteParameters
impl Send for RouteParameters
impl Sync for RouteParameters
impl Unpin for RouteParameters
impl UnwindSafe for RouteParameters
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§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
§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
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request