TakeAutomorphismKeyPrepared

Trait TakeAutomorphismKeyPrepared 

Source
pub trait TakeAutomorphismKeyPrepared<B: Backend> {
    // Required method
    fn take_automorphism_key_prepared(
        &mut self,
        n: usize,
        basek: usize,
        k: usize,
        rows: usize,
        digits: usize,
        rank: usize,
    ) -> (GGLWEAutomorphismKeyPrepared<&mut [u8], B>, &mut Self);
}

Required Methods§

Source

fn take_automorphism_key_prepared( &mut self, n: usize, basek: usize, k: usize, rows: usize, digits: usize, rank: usize, ) -> (GGLWEAutomorphismKeyPrepared<&mut [u8], B>, &mut Self)

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.

Implementations on Foreign Types§

Source§

impl<B: Backend> TakeAutomorphismKeyPrepared<B> for Scratch<B>

Source§

fn take_automorphism_key_prepared( &mut self, n: usize, basek: usize, k: usize, rows: usize, digits: usize, rank: usize, ) -> (GGLWEAutomorphismKeyPrepared<&mut [u8], B>, &mut Self)

Implementors§