pub struct Compose<P1: Permutation, P2: Permutation>(/* private fields */);Expand description
Composition of two permutations: apply P1 then P2.
Trait Implementations§
Source§impl<P1: Clone + Permutation, P2: Clone + Permutation> Clone for Compose<P1, P2>
impl<P1: Clone + Permutation, P2: Clone + Permutation> Clone for Compose<P1, P2>
Source§impl<P1: Debug + Permutation, P2: Debug + Permutation> Debug for Compose<P1, P2>
impl<P1: Debug + Permutation, P2: Debug + Permutation> Debug for Compose<P1, P2>
Source§impl<P1: Permutation + HasDual, P2: Permutation + HasDual> HasDual for Compose<P1, P2>
impl<P1: Permutation + HasDual, P2: Permutation + HasDual> HasDual for Compose<P1, P2>
Source§impl<P1: Permutation, P2: Permutation> Permutation for Compose<P1, P2>
impl<P1: Permutation, P2: Permutation> Permutation for Compose<P1, P2>
impl<P1: Copy + Permutation, P2: Copy + Permutation> Copy for Compose<P1, P2>
Auto Trait Implementations§
impl<P1, P2> Freeze for Compose<P1, P2>
impl<P1, P2> RefUnwindSafe for Compose<P1, P2>where
P1: RefUnwindSafe,
P2: RefUnwindSafe,
impl<P1, P2> Send for Compose<P1, P2>
impl<P1, P2> Sync for Compose<P1, P2>
impl<P1, P2> Unpin for Compose<P1, P2>
impl<P1, P2> UnsafeUnpin for Compose<P1, P2>
impl<P1, P2> UnwindSafe for Compose<P1, P2>where
P1: UnwindSafe,
P2: UnwindSafe,
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