pub trait OpRotateRight { type Output; // Required method fn rot_r(self) -> Self::Output; }
rotate right. The previously last element is now the last.