Closed jimouris closed 2 years ago
Hi, pretty much whatever the title says the trait Clone is not implemented for Ctr128LE. I'm trying to create a struct:
Clone
Ctr128LE
#[derive(Clone)] pub struct PrgStream { stream: Aes128Ctr128LE, }
and Clone is not supported.
Yeah, deriving Clone on CtrCore results in a redundant Clone bound on used flavor. Direct implementation without the bound should fix it.
CtrCore
Thanks!
Hi, pretty much whatever the title says the trait
Clone
is not implemented forCtr128LE
. I'm trying to create a struct:and
Clone
is not supported.