Struct ScorerAccountingForInFlightHtlcs
pub struct ScorerAccountingForInFlightHtlcs<'a, S>{ /* private fields */ }Expand description
ScoreLookUp implementation that factors in in-flight HTLC liquidity.
Useful for custom Router implementations to wrap their ScoreLookUp on-the-fly when calling
find_route.
Implementations§
§impl<'a, S> ScorerAccountingForInFlightHtlcs<'a, S>
impl<'a, S> ScorerAccountingForInFlightHtlcs<'a, S>
pub fn new(
scorer: S,
inflight_htlcs: &'a InFlightHtlcs,
) -> ScorerAccountingForInFlightHtlcs<'a, S>
pub fn new( scorer: S, inflight_htlcs: &'a InFlightHtlcs, ) -> ScorerAccountingForInFlightHtlcs<'a, S>
Initialize a new ScorerAccountingForInFlightHtlcs.
Trait Implementations§
§impl<'a, S> ScoreLookUp for ScorerAccountingForInFlightHtlcs<'a, S>
impl<'a, S> ScoreLookUp for ScorerAccountingForInFlightHtlcs<'a, S>
§type ScoreParams = <<S as Deref>::Target as ScoreLookUp>::ScoreParams
type ScoreParams = <<S as Deref>::Target as ScoreLookUp>::ScoreParams
A configurable type which should contain various passed-in parameters for configuring the scorer,
on a per-routefinding-call basis through to the scorer methods,
which are used to determine the parameters for the suitability of channels for use.
§fn channel_penalty_msat(
&self,
candidate: &CandidateRouteHop<'_>,
usage: ChannelUsage,
score_params: &<ScorerAccountingForInFlightHtlcs<'a, S> as ScoreLookUp>::ScoreParams,
) -> u64
fn channel_penalty_msat( &self, candidate: &CandidateRouteHop<'_>, usage: ChannelUsage, score_params: &<ScorerAccountingForInFlightHtlcs<'a, S> as ScoreLookUp>::ScoreParams, ) -> u64
Returns the fee in msats willing to be paid to avoid routing
send_amt_msat through the
given channel in the direction from source to target. Read moreAuto Trait Implementations§
impl<'a, S> Freeze for ScorerAccountingForInFlightHtlcs<'a, S>where
S: Freeze,
impl<'a, S> RefUnwindSafe for ScorerAccountingForInFlightHtlcs<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for ScorerAccountingForInFlightHtlcs<'a, S>where
S: Send,
impl<'a, S> Sync for ScorerAccountingForInFlightHtlcs<'a, S>where
S: Sync,
impl<'a, S> Unpin for ScorerAccountingForInFlightHtlcs<'a, S>where
S: Unpin,
impl<'a, S> UnwindSafe for ScorerAccountingForInFlightHtlcs<'a, S>where
S: UnwindSafe,
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
§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
§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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