pub struct LinearTransformationGiantStep<P> {
pub rot: i64,
pub diagonals: Vec<LinearTransformationDiagonal<P>>,
}Expand description
A single giant step j: its inner sum is rotated by rot slots and added to
the output (rot == 0 is the identity giant step).
Fields§
§rot: i64Slot rotation amount n1*j.
diagonals: Vec<LinearTransformationDiagonal<P>>The non-zero diagonals contributing to this giant step.
Auto Trait Implementations§
impl<P> Freeze for LinearTransformationGiantStep<P>
impl<P> RefUnwindSafe for LinearTransformationGiantStep<P>
impl<P> Send for LinearTransformationGiantStep<P>
impl<P> Sync for LinearTransformationGiantStep<P>
impl<P> Unpin for LinearTransformationGiantStep<P>
impl<P> UnsafeUnpin for LinearTransformationGiantStep<P>
impl<P> UnwindSafe for LinearTransformationGiantStep<P>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more