GGSWExpandRows

Trait GGSWExpandRows 

Source
pub trait GGSWExpandRows<BE: Backend>{
    // Provided methods
    fn ggsw_expand_rows_tmp_bytes<R, A>(
        &self,
        res_infos: &R,
        tsk_infos: &A,
    ) -> usize
       where R: GGSWInfos,
             A: GGLWEInfos { ... }
    fn ggsw_expand_row<R, T>(
        &self,
        res: &mut R,
        tsk: &T,
        scratch: &mut Scratch<BE>,
    )
       where R: GGSWToMut,
             T: GLWETensorKeyPreparedToRef<BE>,
             Scratch<BE>: ScratchTakeCore<BE> { ... }
}

Provided Methods§

Source

fn ggsw_expand_rows_tmp_bytes<R, A>( &self, res_infos: &R, tsk_infos: &A, ) -> usize
where R: GGSWInfos, A: GGLWEInfos,

Source

fn ggsw_expand_row<R, T>(&self, res: &mut R, tsk: &T, scratch: &mut Scratch<BE>)

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<BE: Backend> GGSWExpandRows<BE> for Module<BE>

Implementors§