pub struct Batch<const N: usize, const M: usize = 128> {
pub secret_keys: [SecretKey; N],
pub public_keys: [PublicKey; N],
pub messages: [[u8; M]; N],
pub lengths: [UInt; N],
pub signatures: [Signature; N],
}Fields§
§secret_keys: [SecretKey; N]§public_keys: [PublicKey; N]§messages: [[u8; M]; N]§lengths: [UInt; N]§signatures: [Signature; N]Implementations§
Auto Trait Implementations§
impl<const N: usize, const M: usize> Freeze for Batch<N, M>
impl<const N: usize, const M: usize> RefUnwindSafe for Batch<N, M>
impl<const N: usize, const M: usize> Send for Batch<N, M>
impl<const N: usize, const M: usize> Sync for Batch<N, M>
impl<const N: usize, const M: usize> Unpin for Batch<N, M>
impl<const N: usize, const M: usize> UnwindSafe for Batch<N, M>
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