pub struct DistributedPrfResult {
pub output: [u8; 32],
}Expand description
Result of a distributed PRF computation.
Fields§
§output: [u8; 32]Trait Implementations§
Source§impl Clone for DistributedPrfResult
impl Clone for DistributedPrfResult
Source§fn clone(&self) -> DistributedPrfResult
fn clone(&self) -> DistributedPrfResult
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 DistributedPrfResult
impl Debug for DistributedPrfResult
impl Eq for DistributedPrfResult
Source§impl PartialEq for DistributedPrfResult
impl PartialEq for DistributedPrfResult
Source§fn eq(&self, other: &DistributedPrfResult) -> bool
fn eq(&self, other: &DistributedPrfResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DistributedPrfResult
Auto Trait Implementations§
impl Freeze for DistributedPrfResult
impl RefUnwindSafe for DistributedPrfResult
impl Send for DistributedPrfResult
impl Sync for DistributedPrfResult
impl Unpin for DistributedPrfResult
impl UnsafeUnpin for DistributedPrfResult
impl UnwindSafe for DistributedPrfResult
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