pub struct RenewRevoke {
pub channel_id: [u8; 32],
pub per_update_secret: SecretKey,
}Expand description
Message used to finalize the establishment of a new contract within a channel.
Fields§
§channel_id: [u8; 32]The id of the channel referred to by the message.
per_update_secret: SecretKeyThe pre image of the per update point used by the sending party to setup the previous channel state.
Trait Implementations§
Source§impl Clone for RenewRevoke
impl Clone for RenewRevoke
Source§fn clone(&self) -> RenewRevoke
fn clone(&self) -> RenewRevoke
Returns a duplicate 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 RenewRevoke
impl Debug for RenewRevoke
Source§impl PartialEq for RenewRevoke
impl PartialEq for RenewRevoke
Source§impl Readable for RenewRevoke
impl Readable for RenewRevoke
Source§impl Type for RenewRevoke
impl Type for RenewRevoke
Source§impl Writeable for RenewRevoke
impl Writeable for RenewRevoke
impl Eq for RenewRevoke
impl StructuralPartialEq for RenewRevoke
Auto Trait Implementations§
impl Freeze for RenewRevoke
impl RefUnwindSafe for RenewRevoke
impl Send for RenewRevoke
impl Sync for RenewRevoke
impl Unpin for RenewRevoke
impl UnwindSafe for RenewRevoke
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