Struct lightning::ln::msgs::ChannelReady
source · pub struct ChannelReady {
pub channel_id: ChannelId,
pub next_per_commitment_point: PublicKey,
pub short_channel_id_alias: Option<u64>,
}
Expand description
A channel_ready
message to be sent to or received from a peer.
Fields§
§channel_id: ChannelId
The channel ID
next_per_commitment_point: PublicKey
The per-commitment point of the second commitment transaction
short_channel_id_alias: Option<u64>
If set, provides a short_channel_id
alias for this channel.
The sender will accept payments to be forwarded over this SCID and forward them to this messages’ recipient.
Trait Implementations§
source§impl Clone for ChannelReady
impl Clone for ChannelReady
source§fn clone(&self) -> ChannelReady
fn clone(&self) -> ChannelReady
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 moresource§impl Debug for ChannelReady
impl Debug for ChannelReady
source§impl PartialEq<ChannelReady> for ChannelReady
impl PartialEq<ChannelReady> for ChannelReady
source§fn eq(&self, other: &ChannelReady) -> bool
fn eq(&self, other: &ChannelReady) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Readable for ChannelReady
impl Readable for ChannelReady
source§impl Writeable for ChannelReady
impl Writeable for ChannelReady
impl Eq for ChannelReady
impl StructuralEq for ChannelReady
impl StructuralPartialEq for ChannelReady
Auto Trait Implementations§
impl RefUnwindSafe for ChannelReady
impl Send for ChannelReady
impl Sync for ChannelReady
impl Unpin for ChannelReady
impl UnwindSafe for ChannelReady
Blanket Implementations§
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