pub struct RefreshContribution {
pub from_party: u32,
pub to_party: u32,
pub bytes: [u8; 32],
}Expand description
One party’s refresh contribution: (source_party_index, target_party_index, refresh_scalar_bytes).
Fields§
§from_party: u32§to_party: u32§bytes: [u8; 32]Trait Implementations§
Source§impl Clone for RefreshContribution
impl Clone for RefreshContribution
Source§fn clone(&self) -> RefreshContribution
fn clone(&self) -> RefreshContribution
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 moreAuto Trait Implementations§
impl Freeze for RefreshContribution
impl RefUnwindSafe for RefreshContribution
impl Send for RefreshContribution
impl Sync for RefreshContribution
impl Unpin for RefreshContribution
impl UnsafeUnpin for RefreshContribution
impl UnwindSafe for RefreshContribution
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