Enum breez_sdk_liquid::lightning::routing::gossip::NetworkUpdate
pub enum NetworkUpdate {
ChannelUpdateMessage {
msg: ChannelUpdate,
},
ChannelFailure {
short_channel_id: u64,
is_permanent: bool,
},
NodeFailure {
node_id: PublicKey,
is_permanent: bool,
},
}
Expand description
Update to the NetworkGraph
based on payment failure information conveyed via the Onion
return packet by a node along the route. See BOLT #4 for details.
Variants§
ChannelUpdateMessage
An error indicating a channel_update
messages should be applied via
NetworkGraph::update_channel
.
Fields
§
msg: ChannelUpdate
The update to apply via NetworkGraph::update_channel
.
ChannelFailure
An error indicating that a channel failed to route a payment, which should be applied via
NetworkGraph::channel_failed_permanent
if permanent.
Fields
NodeFailure
An error indicating that a node failed to route a payment, which should be applied via
NetworkGraph::node_failed_permanent
if permanent.
Trait Implementations§
§impl Clone for NetworkUpdate
impl Clone for NetworkUpdate
§fn clone(&self) -> NetworkUpdate
fn clone(&self) -> NetworkUpdate
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 NetworkUpdate
impl Debug for NetworkUpdate
§impl MaybeReadable for NetworkUpdate
impl MaybeReadable for NetworkUpdate
§fn read<R>(reader: &mut R) -> Result<Option<NetworkUpdate>, DecodeError>where
R: Read,
fn read<R>(reader: &mut R) -> Result<Option<NetworkUpdate>, DecodeError>where
R: Read,
Reads a
Self
in from the given Read
.§impl PartialEq for NetworkUpdate
impl PartialEq for NetworkUpdate
§impl Writeable for NetworkUpdate
impl Writeable for NetworkUpdate
impl Eq for NetworkUpdate
impl StructuralPartialEq for NetworkUpdate
Auto Trait Implementations§
impl Freeze for NetworkUpdate
impl RefUnwindSafe for NetworkUpdate
impl Send for NetworkUpdate
impl Sync for NetworkUpdate
impl Unpin for NetworkUpdate
impl UnwindSafe for NetworkUpdate
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