pub struct CyclicProjectionSpec {
pub order: Vec<usize>,
pub rotation: usize,
}Expand description
Projection settings for one cyclic order.
Fields§
§order: Vec<usize>Source-order indices visited before rotation.
rotation: usizeLeft rotation applied to the ordered projection.
Trait Implementations§
Source§impl Clone for CyclicProjectionSpec
impl Clone for CyclicProjectionSpec
Source§fn clone(&self) -> CyclicProjectionSpec
fn clone(&self) -> CyclicProjectionSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CyclicProjectionSpec
impl Debug for CyclicProjectionSpec
impl Eq for CyclicProjectionSpec
Source§impl PartialEq for CyclicProjectionSpec
impl PartialEq for CyclicProjectionSpec
impl StructuralPartialEq for CyclicProjectionSpec
Auto Trait Implementations§
impl Freeze for CyclicProjectionSpec
impl RefUnwindSafe for CyclicProjectionSpec
impl Send for CyclicProjectionSpec
impl Sync for CyclicProjectionSpec
impl Unpin for CyclicProjectionSpec
impl UnsafeUnpin for CyclicProjectionSpec
impl UnwindSafe for CyclicProjectionSpec
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