std::ops::BitOrAssign

Trait std::ops::BitOrAssign

#[lang = "bitor_assign"]
pub trait BitOrAssign<Rhs = Self> {
    fn bitor_assign(&mut self, rhs: Rhs);
}

The bitwise OR assignment operator |=.

Examples

A trivial implementation of BitOrAssign. When Foo |= Foo happens, it ends up calling bitor_assign, and therefore, main prints Bitwise Or-ing!.

use std::ops::BitOrAssign;

struct Foo;

impl BitOrAssign for Foo {
    fn bitor_assign(&mut self, _rhs: Foo) {
        println!("Bitwise Or-ing!");
    }
}

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

Required Methods

The method for the |= operator

Implementors

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/trait.BitOrAssign.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部