pub type Runtime = GenericRuntime<(), ()>;
Expand description
A type containing the Runtime::new_*
constructor methods to create
the appropriate runtime:
Runtime::new_fhe
constructs anFheRuntime
capable of performing FHE-related tasks, but not ZKP tasks.Runtime::new_zkp
constructs aZkpRuntime
capable of performing ZKP tasks, but not FHE.Runtime::new_fhe_zkp
constructs aFheZkpRuntime
that can do both.
Aliased Typeยง
struct Runtime { /* private fields */ }