Trait BitOrAssign

Source
pub unsafe trait BitOrAssign<Rhs = Self>: BitOrAssign<Rhs> { }
Expand description

This trait is empty declaration of ::core::ops::BitOrAssign to be used with newer_type::implement.

§Example

#[implement(for<Rhs> newer_type_std::ops::BitOrAssign<Rhs>)]
struct MyStruct {
    slot: usize
}

§Safety

should be implemented by newer_type::implement

Implementors§