pub trait ShrAssignSpecImpl<Rhs = Self>: ShrAssign<Rhs> {
// Required methods
exec fn obeys_shr_assign_spec() -> bool;
exec fn shr_assign_req(&self, rhs: Rhs) -> bool;
exec fn shr_assign_spec(&self, rhs: Rhs) -> &Self;
}Required Methods§
Sourceexec fn obeys_shr_assign_spec() -> bool
exec fn obeys_shr_assign_spec() -> bool
Sourceexec fn shr_assign_req(&self, rhs: Rhs) -> bool
exec fn shr_assign_req(&self, rhs: Rhs) -> bool
Sourceexec fn shr_assign_spec(&self, rhs: Rhs) -> &Self
exec fn shr_assign_spec(&self, rhs: Rhs) -> &Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl ShrAssignSpecImpl for i8
impl ShrAssignSpecImpl for i8
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: i8) -> bool
open spec fn shr_assign_req(&self, rhs: i8) -> bool
{ rhs < i8::BITS }Source§open spec fn shr_assign_spec(&self, rhs: i8) -> &Self
open spec fn shr_assign_spec(&self, rhs: i8) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for i16
impl ShrAssignSpecImpl for i16
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: i16) -> bool
open spec fn shr_assign_req(&self, rhs: i16) -> bool
{ rhs < i16::BITS }Source§open spec fn shr_assign_spec(&self, rhs: i16) -> &Self
open spec fn shr_assign_spec(&self, rhs: i16) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for i32
impl ShrAssignSpecImpl for i32
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: i32) -> bool
open spec fn shr_assign_req(&self, rhs: i32) -> bool
{ rhs < i32::BITS }Source§open spec fn shr_assign_spec(&self, rhs: i32) -> &Self
open spec fn shr_assign_spec(&self, rhs: i32) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for i64
impl ShrAssignSpecImpl for i64
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: i64) -> bool
open spec fn shr_assign_req(&self, rhs: i64) -> bool
{ rhs < i64::BITS }Source§open spec fn shr_assign_spec(&self, rhs: i64) -> &Self
open spec fn shr_assign_spec(&self, rhs: i64) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for i128
impl ShrAssignSpecImpl for i128
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: i128) -> bool
open spec fn shr_assign_req(&self, rhs: i128) -> bool
{ rhs < i128::BITS }Source§open spec fn shr_assign_spec(&self, rhs: i128) -> &Self
open spec fn shr_assign_spec(&self, rhs: i128) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for isize
impl ShrAssignSpecImpl for isize
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: isize) -> bool
open spec fn shr_assign_req(&self, rhs: isize) -> bool
{ rhs < isize::BITS }Source§open spec fn shr_assign_spec(&self, rhs: isize) -> &Self
open spec fn shr_assign_spec(&self, rhs: isize) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for u8
impl ShrAssignSpecImpl for u8
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: u8) -> bool
open spec fn shr_assign_req(&self, rhs: u8) -> bool
{ rhs < u8::BITS }Source§open spec fn shr_assign_spec(&self, rhs: u8) -> &Self
open spec fn shr_assign_spec(&self, rhs: u8) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for u16
impl ShrAssignSpecImpl for u16
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: u16) -> bool
open spec fn shr_assign_req(&self, rhs: u16) -> bool
{ rhs < u16::BITS }Source§open spec fn shr_assign_spec(&self, rhs: u16) -> &Self
open spec fn shr_assign_spec(&self, rhs: u16) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for u32
impl ShrAssignSpecImpl for u32
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: u32) -> bool
open spec fn shr_assign_req(&self, rhs: u32) -> bool
{ rhs < u32::BITS }Source§open spec fn shr_assign_spec(&self, rhs: u32) -> &Self
open spec fn shr_assign_spec(&self, rhs: u32) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for u64
impl ShrAssignSpecImpl for u64
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: u64) -> bool
open spec fn shr_assign_req(&self, rhs: u64) -> bool
{ rhs < u64::BITS }Source§open spec fn shr_assign_spec(&self, rhs: u64) -> &Self
open spec fn shr_assign_spec(&self, rhs: u64) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for u128
impl ShrAssignSpecImpl for u128
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: u128) -> bool
open spec fn shr_assign_req(&self, rhs: u128) -> bool
{ rhs < u128::BITS }Source§open spec fn shr_assign_spec(&self, rhs: u128) -> &Self
open spec fn shr_assign_spec(&self, rhs: u128) -> &Self
{ &(self >> rhs) }Source§impl ShrAssignSpecImpl for usize
impl ShrAssignSpecImpl for usize
Source§open spec fn obeys_shr_assign_spec() -> bool
open spec fn obeys_shr_assign_spec() -> bool
{ true }Source§open spec fn shr_assign_req(&self, rhs: usize) -> bool
open spec fn shr_assign_req(&self, rhs: usize) -> bool
{ rhs < usize::BITS }Source§open spec fn shr_assign_spec(&self, rhs: usize) -> &Self
open spec fn shr_assign_spec(&self, rhs: usize) -> &Self
{ &(self >> rhs) }