pub trait Shr<Rhs = Self> {
type Output;
// Required method
fn shr(self, rhs: Rhs) -> Self::Output;
}
std
only.Expand description
The right shift operator >>
. Note that because this trait is implemented
for all integer types with multiple right-hand-side types, Rust’s type
checker has special handling for _ >> _
, setting the result type for
integer operations to the type of the left-hand-side operand. This means
that though a >> b
and a.shr(b)
are one and the same from an evaluation
standpoint, they are different when it comes to type inference.
§Examples
An implementation of Shr
that lifts the >>
operation on integers to a
wrapper around usize
.
use std::ops::Shr;
#[derive(PartialEq, Debug)]
struct Scalar(usize);
impl Shr<Scalar> for Scalar {
type Output = Self;
fn shr(self, Self(rhs): Self) -> Self::Output {
let Self(lhs) = self;
Self(lhs >> rhs)
}
}
assert_eq!(Scalar(16) >> Scalar(2), Scalar(4));
An implementation of Shr
that spins a vector rightward by a given amount.
use std::ops::Shr;
#[derive(PartialEq, Debug)]
struct SpinVector<T: Clone> {
vec: Vec<T>,
}
impl<T: Clone> Shr<usize> for SpinVector<T> {
type Output = Self;
fn shr(self, rhs: usize) -> Self::Output {
// Rotate the vector by `rhs` places.
let (a, b) = self.vec.split_at(self.vec.len() - rhs);
let mut spun_vector = vec![];
spun_vector.extend_from_slice(b);
spun_vector.extend_from_slice(a);
Self { vec: spun_vector }
}
}
assert_eq!(SpinVector { vec: vec![0, 1, 2, 3, 4] } >> 2,
SpinVector { vec: vec![3, 4, 0, 1, 2] });
Required Associated Types§
Required Methods§
Implementors§
source§impl Shr<&LittleEndian<i16>> for &LittleEndian<i16>
impl Shr<&LittleEndian<i16>> for &LittleEndian<i16>
source§impl Shr<&LittleEndian<i16>> for LittleEndian<i16>
impl Shr<&LittleEndian<i16>> for LittleEndian<i16>
source§impl Shr<&LittleEndian<i32>> for &LittleEndian<i32>
impl Shr<&LittleEndian<i32>> for &LittleEndian<i32>
source§impl Shr<&LittleEndian<i32>> for LittleEndian<i32>
impl Shr<&LittleEndian<i32>> for LittleEndian<i32>
source§impl Shr<&LittleEndian<i64>> for &LittleEndian<i64>
impl Shr<&LittleEndian<i64>> for &LittleEndian<i64>
source§impl Shr<&LittleEndian<i64>> for LittleEndian<i64>
impl Shr<&LittleEndian<i64>> for LittleEndian<i64>
source§impl Shr<&LittleEndian<i128>> for &LittleEndian<i128>
impl Shr<&LittleEndian<i128>> for &LittleEndian<i128>
source§impl Shr<&LittleEndian<i128>> for LittleEndian<i128>
impl Shr<&LittleEndian<i128>> for LittleEndian<i128>
source§impl Shr<&LittleEndian<u16>> for &LittleEndian<u16>
impl Shr<&LittleEndian<u16>> for &LittleEndian<u16>
source§impl Shr<&LittleEndian<u16>> for LittleEndian<u16>
impl Shr<&LittleEndian<u16>> for LittleEndian<u16>
source§impl Shr<&LittleEndian<u32>> for &LittleEndian<u32>
impl Shr<&LittleEndian<u32>> for &LittleEndian<u32>
source§impl Shr<&LittleEndian<u32>> for LittleEndian<u32>
impl Shr<&LittleEndian<u32>> for LittleEndian<u32>
source§impl Shr<&LittleEndian<u64>> for &LittleEndian<u64>
impl Shr<&LittleEndian<u64>> for &LittleEndian<u64>
source§impl Shr<&LittleEndian<u64>> for LittleEndian<u64>
impl Shr<&LittleEndian<u64>> for LittleEndian<u64>
source§impl Shr<&LittleEndian<u128>> for &LittleEndian<u128>
impl Shr<&LittleEndian<u128>> for &LittleEndian<u128>
source§impl Shr<&LittleEndian<u128>> for LittleEndian<u128>
impl Shr<&LittleEndian<u128>> for LittleEndian<u128>
source§impl Shr<&NativeEndian<i16>> for &NativeEndian<i16>
impl Shr<&NativeEndian<i16>> for &NativeEndian<i16>
source§impl Shr<&NativeEndian<i16>> for NativeEndian<i16>
impl Shr<&NativeEndian<i16>> for NativeEndian<i16>
source§impl Shr<&NativeEndian<i32>> for &NativeEndian<i32>
impl Shr<&NativeEndian<i32>> for &NativeEndian<i32>
source§impl Shr<&NativeEndian<i32>> for NativeEndian<i32>
impl Shr<&NativeEndian<i32>> for NativeEndian<i32>
source§impl Shr<&NativeEndian<i64>> for &NativeEndian<i64>
impl Shr<&NativeEndian<i64>> for &NativeEndian<i64>
source§impl Shr<&NativeEndian<i64>> for NativeEndian<i64>
impl Shr<&NativeEndian<i64>> for NativeEndian<i64>
source§impl Shr<&NativeEndian<i128>> for &NativeEndian<i128>
impl Shr<&NativeEndian<i128>> for &NativeEndian<i128>
source§impl Shr<&NativeEndian<i128>> for NativeEndian<i128>
impl Shr<&NativeEndian<i128>> for NativeEndian<i128>
source§impl Shr<&NativeEndian<u16>> for &NativeEndian<u16>
impl Shr<&NativeEndian<u16>> for &NativeEndian<u16>
source§impl Shr<&NativeEndian<u16>> for NativeEndian<u16>
impl Shr<&NativeEndian<u16>> for NativeEndian<u16>
source§impl Shr<&NativeEndian<u32>> for &NativeEndian<u32>
impl Shr<&NativeEndian<u32>> for &NativeEndian<u32>
source§impl Shr<&NativeEndian<u32>> for NativeEndian<u32>
impl Shr<&NativeEndian<u32>> for NativeEndian<u32>
source§impl Shr<&NativeEndian<u64>> for &NativeEndian<u64>
impl Shr<&NativeEndian<u64>> for &NativeEndian<u64>
source§impl Shr<&NativeEndian<u64>> for NativeEndian<u64>
impl Shr<&NativeEndian<u64>> for NativeEndian<u64>
source§impl Shr<&NativeEndian<u128>> for &NativeEndian<u128>
impl Shr<&NativeEndian<u128>> for &NativeEndian<u128>
source§impl Shr<&NativeEndian<u128>> for NativeEndian<u128>
impl Shr<&NativeEndian<u128>> for NativeEndian<u128>
source§impl Shr<LittleEndian<i16>> for &LittleEndian<i16>
impl Shr<LittleEndian<i16>> for &LittleEndian<i16>
source§impl Shr<LittleEndian<i32>> for &LittleEndian<i32>
impl Shr<LittleEndian<i32>> for &LittleEndian<i32>
source§impl Shr<LittleEndian<i64>> for &LittleEndian<i64>
impl Shr<LittleEndian<i64>> for &LittleEndian<i64>
source§impl Shr<LittleEndian<i128>> for &LittleEndian<i128>
impl Shr<LittleEndian<i128>> for &LittleEndian<i128>
source§impl Shr<LittleEndian<u16>> for &LittleEndian<u16>
impl Shr<LittleEndian<u16>> for &LittleEndian<u16>
source§impl Shr<LittleEndian<u32>> for &LittleEndian<u32>
impl Shr<LittleEndian<u32>> for &LittleEndian<u32>
source§impl Shr<LittleEndian<u64>> for &LittleEndian<u64>
impl Shr<LittleEndian<u64>> for &LittleEndian<u64>
source§impl Shr<LittleEndian<u128>> for &LittleEndian<u128>
impl Shr<LittleEndian<u128>> for &LittleEndian<u128>
source§impl Shr<NativeEndian<i16>> for &NativeEndian<i16>
impl Shr<NativeEndian<i16>> for &NativeEndian<i16>
source§impl Shr<NativeEndian<i32>> for &NativeEndian<i32>
impl Shr<NativeEndian<i32>> for &NativeEndian<i32>
source§impl Shr<NativeEndian<i64>> for &NativeEndian<i64>
impl Shr<NativeEndian<i64>> for &NativeEndian<i64>
source§impl Shr<NativeEndian<i128>> for &NativeEndian<i128>
impl Shr<NativeEndian<i128>> for &NativeEndian<i128>
source§impl Shr<NativeEndian<u16>> for &NativeEndian<u16>
impl Shr<NativeEndian<u16>> for &NativeEndian<u16>
source§impl Shr<NativeEndian<u32>> for &NativeEndian<u32>
impl Shr<NativeEndian<u32>> for &NativeEndian<u32>
source§impl Shr<NativeEndian<u64>> for &NativeEndian<u64>
impl Shr<NativeEndian<u64>> for &NativeEndian<u64>
source§impl Shr<NativeEndian<u128>> for &NativeEndian<u128>
impl Shr<NativeEndian<u128>> for &NativeEndian<u128>
source§impl<'lhs, const N: usize> Shr<&i8> for &'lhs Simd<i8, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&i8> for &'lhs Simd<i8, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&i16> for &'lhs Simd<i16, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&i16> for &'lhs Simd<i16, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&i32> for &'lhs Simd<i32, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&i32> for &'lhs Simd<i32, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&i64> for &'lhs Simd<i64, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&i64> for &'lhs Simd<i64, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&isize> for &'lhs Simd<isize, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&isize> for &'lhs Simd<isize, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&u8> for &'lhs Simd<u8, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&u8> for &'lhs Simd<u8, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&u16> for &'lhs Simd<u16, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&u16> for &'lhs Simd<u16, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&u32> for &'lhs Simd<u32, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&u32> for &'lhs Simd<u32, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&u64> for &'lhs Simd<u64, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&u64> for &'lhs Simd<u64, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<&usize> for &'lhs Simd<usize, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<&usize> for &'lhs Simd<usize, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<i8> for &'lhs Simd<i8, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<i8> for &'lhs Simd<i8, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<i16> for &'lhs Simd<i16, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<i16> for &'lhs Simd<i16, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<i32> for &'lhs Simd<i32, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<i32> for &'lhs Simd<i32, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<i64> for &'lhs Simd<i64, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<i64> for &'lhs Simd<i64, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<isize> for &'lhs Simd<isize, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<isize> for &'lhs Simd<isize, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<u8> for &'lhs Simd<u8, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<u8> for &'lhs Simd<u8, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<u16> for &'lhs Simd<u16, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<u16> for &'lhs Simd<u16, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<u32> for &'lhs Simd<u32, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<u32> for &'lhs Simd<u32, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<u64> for &'lhs Simd<u64, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<u64> for &'lhs Simd<u64, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<'lhs, const N: usize> Shr<usize> for &'lhs Simd<usize, N>where
LaneCount<N>: SupportedLaneCount,
impl<'lhs, const N: usize> Shr<usize> for &'lhs Simd<usize, N>where
LaneCount<N>: SupportedLaneCount,
source§impl<U> Shr<U> for UTermwhere
U: Unsigned,
impl<U> Shr<U> for UTermwhere
U: Unsigned,
Shifting right a UTerm
by an unsigned integer: UTerm >> U = UTerm
source§impl<U, B> Shr<UTerm> for UInt<U, B>
impl<U, B> Shr<UTerm> for UInt<U, B>
Shifting right UInt
by UTerm
: UInt<U, B> >> UTerm = UInt<U, B>
source§impl<U, B, Ur, Br> Shr<UInt<Ur, Br>> for UInt<U, B>
impl<U, B, Ur, Br> Shr<UInt<Ur, Br>> for UInt<U, B>
Shifting right UInt
by UInt
: UInt(U, B) >> Y
= U >> (Y - 1)