GGSWRotate

Trait GGSWRotate 

Source
pub trait GGSWRotate<BE: Backend>
where Self: GLWERotate<BE>,
{ // Provided methods fn ggsw_rotate_tmp_bytes(&self) -> usize { ... } fn ggsw_rotate<R, A>(&self, k: i64, res: &mut R, a: &A) where R: GGSWToMut, A: GGSWToRef { ... } fn ggsw_rotate_inplace<R>( &self, k: i64, res: &mut R, scratch: &mut Scratch<BE>, ) where R: GGSWToMut, Scratch<BE>: ScratchTakeCore<BE> { ... } }

Provided Methods§

Source

fn ggsw_rotate_tmp_bytes(&self) -> usize

Source

fn ggsw_rotate<R, A>(&self, k: i64, res: &mut R, a: &A)
where R: GGSWToMut, A: GGSWToRef,

Source

fn ggsw_rotate_inplace<R>(&self, k: i64, res: &mut R, scratch: &mut Scratch<BE>)
where R: GGSWToMut, Scratch<BE>: ScratchTakeCore<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> GGSWRotate<BE> for Module<BE>
where Module<BE>: GLWERotate<BE>,

Implementors§