pub struct HintSeed<K: KeyPair, const L: usize> {
pub blinded_public_key: BlindedPublicKey<K>,
pub message: [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: [u8; L]Message
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, const L: usize> Freeze for HintSeed<K, L>
impl<K, const L: usize> RefUnwindSafe for HintSeed<K, L>
impl<K, const L: usize> Send for HintSeed<K, L>
impl<K, const L: usize> Sync for HintSeed<K, L>
impl<K, const L: usize> Unpin for HintSeed<K, L>
impl<K, const L: usize> 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