pub trait NumCiphertexts {
const NUM_CIPHERTEXTS: usize;
}Expand description
Declare how many ciphertexts an FheType decomposes into. The runtime needs this to correctly bundle return values from an Fhe Program.
Required Associated Constants§
Sourceconst NUM_CIPHERTEXTS: usize
const NUM_CIPHERTEXTS: usize
The number of ciphertexts this type decomposes into.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.