Struct lightning_signer::prelude::MutexGuard
1.0.0 · source · pub struct MutexGuard<'a, T>where
T: 'a + ?Sized,{ /* private fields */ }
Expand description
An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
The data protected by the mutex can be accessed through this guard via its
Deref
and DerefMut
implementations.
This structure is created by the lock
and try_lock
methods on
Mutex
.
Trait Implementations§
source§impl<T> Deref for MutexGuard<'_, T>where
T: ?Sized,
impl<T> Deref for MutexGuard<'_, T>where T: ?Sized,
source§impl<T> DerefMut for MutexGuard<'_, T>where
T: ?Sized,
impl<T> DerefMut for MutexGuard<'_, T>where T: ?Sized,
source§impl<T> Drop for MutexGuard<'_, T>where
T: ?Sized,
impl<T> Drop for MutexGuard<'_, T>where T: ?Sized,
impl<T> !Send for MutexGuard<'_, T>where T: ?Sized,
impl<T> Sync for MutexGuard<'_, T>where T: Sync + ?Sized,
Auto Trait Implementations§
impl<'a, T: ?Sized> RefUnwindSafe for MutexGuard<'a, T>
impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>
impl<'a, T: ?Sized> UnwindSafe for MutexGuard<'a, T>
Blanket Implementations§
source§impl<S, T> Score for Twhere
S: Score,
T: DerefMut<Target = S>,
impl<S, T> Score for Twhere S: Score, T: DerefMut<Target = S>,
source§fn channel_penalty_msat(
&self,
short_channel_id: u64,
source: &NodeId,
target: &NodeId,
usage: ChannelUsage
) -> u64
fn channel_penalty_msat( &self, short_channel_id: u64, source: &NodeId, target: &NodeId, usage: ChannelUsage ) -> 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 moresource§fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64)
fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64)
Handles updating channel penalties after failing to route through a channel.
source§fn payment_path_successful(&mut self, path: &[&RouteHop])
fn payment_path_successful(&mut self, path: &[&RouteHop])
Handles updating channel penalties after successfully routing along a path.
source§fn probe_failed(&mut self, path: &[&RouteHop], short_channel_id: u64)
fn probe_failed(&mut self, path: &[&RouteHop], short_channel_id: u64)
Handles updating channel penalties after a probe over the given path failed.
source§fn probe_successful(&mut self, path: &[&RouteHop])
fn probe_successful(&mut self, path: &[&RouteHop])
Handles updating channel penalties after a probe over the given path succeeded.