pub struct ThresholdDecryptionResponse {
pub decryption_share: Box<[u8]>,
}Expand description
A response from Ursula with a derived decryption share.
Fields§
The decryption share to include in the response.
Implementations§
Trait Implementations§
source§impl Clone for ThresholdDecryptionResponse
impl Clone for ThresholdDecryptionResponse
source§fn clone(&self) -> ThresholdDecryptionResponse
fn clone(&self) -> ThresholdDecryptionResponse
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 ThresholdDecryptionResponse
impl Debug for ThresholdDecryptionResponse
source§impl<'de> Deserialize<'de> for ThresholdDecryptionResponse
impl<'de> Deserialize<'de> for ThresholdDecryptionResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ThresholdDecryptionResponse> for ThresholdDecryptionResponse
impl PartialEq<ThresholdDecryptionResponse> for ThresholdDecryptionResponse
source§fn eq(&self, other: &ThresholdDecryptionResponse) -> bool
fn eq(&self, other: &ThresholdDecryptionResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a> ProtocolObject<'a> for ThresholdDecryptionResponse
impl<'a> ProtocolObject<'a> for ThresholdDecryptionResponse
impl Eq for ThresholdDecryptionResponse
impl StructuralEq for ThresholdDecryptionResponse
impl StructuralPartialEq for ThresholdDecryptionResponse
Auto Trait Implementations§
impl RefUnwindSafe for ThresholdDecryptionResponse
impl Send for ThresholdDecryptionResponse
impl Sync for ThresholdDecryptionResponse
impl Unpin for ThresholdDecryptionResponse
impl UnwindSafe for ThresholdDecryptionResponse
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