pub struct CloseSuccess {
pub channel_id: String,
pub total_value: u64,
pub receiver_sum: u64,
pub sender_sum: u64,
pub sender_proofs: String,
pub already_closed: bool,
}Fields§
§channel_id: String§total_value: u64§receiver_sum: u64§sender_sum: u64§sender_proofs: String§already_closed: boolTrait Implementations§
Source§impl Clone for CloseSuccess
impl Clone for CloseSuccess
Source§fn clone(&self) -> CloseSuccess
fn clone(&self) -> CloseSuccess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CloseSuccess
impl Debug for CloseSuccess
Auto Trait Implementations§
impl Freeze for CloseSuccess
impl RefUnwindSafe for CloseSuccess
impl Send for CloseSuccess
impl Sync for CloseSuccess
impl Unpin for CloseSuccess
impl UnsafeUnpin for CloseSuccess
impl UnwindSafe for CloseSuccess
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