pub struct RevokeCommitmentTxReply {
pub old_commitment_secret: DisclosedSecret,
pub next_per_commitment_point: PubKey,
}
Expand description
Fields§
§old_commitment_secret: DisclosedSecret
§next_per_commitment_point: PubKey
Trait Implementations§
Source§impl DeBolt for RevokeCommitmentTxReply
impl DeBolt for RevokeCommitmentTxReply
Source§impl Debug for RevokeCommitmentTxReply
impl Debug for RevokeCommitmentTxReply
Source§impl Decodable for RevokeCommitmentTxReply
impl Decodable for RevokeCommitmentTxReply
Source§impl Encodable for RevokeCommitmentTxReply
impl Encodable for RevokeCommitmentTxReply
Auto Trait Implementations§
impl Freeze for RevokeCommitmentTxReply
impl RefUnwindSafe for RevokeCommitmentTxReply
impl Send for RevokeCommitmentTxReply
impl Sync for RevokeCommitmentTxReply
impl Unpin for RevokeCommitmentTxReply
impl UnwindSafe for RevokeCommitmentTxReply
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
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> 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 more