pub trait BitOrSpecImpl<Rhs = Self>: BitOr<Rhs> {
// Required methods
exec fn obeys_bitor_spec() -> bool;
exec fn bitor_req(self, rhs: Rhs) -> bool
where Self: Sized;
exec fn bitor_spec(self, rhs: Rhs) -> Self::Output
where Self: Sized;
}
Required Methods§
Sourceexec fn obeys_bitor_spec() -> bool
exec fn obeys_bitor_spec() -> bool
Sourceexec fn bitor_spec(self, rhs: Rhs) -> Self::Outputwhere
Self: Sized,
exec fn bitor_spec(self, rhs: Rhs) -> Self::Outputwhere
Self: Sized,
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.