pub struct HintSeed<K: KeyPair, L: ArraySize> {
pub blinded_public_key: BlindedPublicKey<K>,
pub message: Array<u8, L>,
}Expand description
Pairing of message contents and the BlindedPublicKey of its recipient.
Hint seeds are used to create Hints.
Fields§
§blinded_public_key: BlindedPublicKey<K>Blinded Public Key
message: Array<u8, L>Message
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, L> Freeze for HintSeed<K, L>
impl<K, L> RefUnwindSafe for HintSeed<K, L>
impl<K, L> Send for HintSeed<K, L>
impl<K, L> Sync for HintSeed<K, L>
impl<K, L> Unpin for HintSeed<K, L>
impl<K, L> UnsafeUnpin for HintSeed<K, L>
impl<K, L> UnwindSafe for HintSeed<K, L>
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