Struct aldrin_core::message::ClaimChannelEndReply
source · pub struct ClaimChannelEndReply {
pub serial: u32,
pub result: ClaimChannelEndResult,
}Fields§
§serial: u32§result: ClaimChannelEndResultTrait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for ClaimChannelEndReply
impl<'arbitrary> Arbitrary<'arbitrary> for ClaimChannelEndReply
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the entirety of the given
unstructured data. Read moresource§impl Clone for ClaimChannelEndReply
impl Clone for ClaimChannelEndReply
source§fn clone(&self) -> ClaimChannelEndReply
fn clone(&self) -> ClaimChannelEndReply
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 ClaimChannelEndReply
impl Debug for ClaimChannelEndReply
source§impl From<ClaimChannelEndReply> for Message
impl From<ClaimChannelEndReply> for Message
source§fn from(msg: ClaimChannelEndReply) -> Self
fn from(msg: ClaimChannelEndReply) -> Self
Converts to this type from the input type.
source§impl MessageOps for ClaimChannelEndReply
impl MessageOps for ClaimChannelEndReply
fn kind(&self) -> MessageKind
fn serialize_message(self) -> Result<BytesMut, MessageSerializeError>
fn deserialize_message(buf: BytesMut) -> Result<Self, MessageDeserializeError>
fn value(&self) -> Option<&SerializedValueSlice>
source§impl PartialEq for ClaimChannelEndReply
impl PartialEq for ClaimChannelEndReply
source§fn eq(&self, other: &ClaimChannelEndReply) -> bool
fn eq(&self, other: &ClaimChannelEndReply) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ClaimChannelEndReply
impl Eq for ClaimChannelEndReply
impl StructuralEq for ClaimChannelEndReply
impl StructuralPartialEq for ClaimChannelEndReply
Auto Trait Implementations§
impl RefUnwindSafe for ClaimChannelEndReply
impl Send for ClaimChannelEndReply
impl Sync for ClaimChannelEndReply
impl Unpin for ClaimChannelEndReply
impl UnwindSafe for ClaimChannelEndReply
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