Trait steed::ops::ShrAssign1.8.0 [] [src]

pub trait ShrAssign<Rhs = Self> {
    fn shr_assign(&mut self, Rhs);
}

The ShrAssign trait is used to specify the functionality of >>=.

Examples

A trivial implementation of ShrAssign. When Foo >>= Foo happens, it ends up calling shr_assign, and therefore, main prints Shifting right!.

use std::ops::ShrAssign;

struct Foo;

impl ShrAssign<Foo> for Foo {
    fn shr_assign(&mut self, _rhs: Foo) {
        println!("Shifting right!");
    }
}

fn main() {
    let mut foo = Foo;
    foo >>= Foo;
}

Required Methods

The method for the >>= operator

Implementors