pub trait DisjointBitOr:Copy + 'static { // Required method unsafe fndisjoint_bitor(self, other: Self) -> Self;}🔬This is a nightly-only experimental API. (
core_intrinsics_fallbacks)Required Methods§
Sourceunsafe fndisjoint_bitor(self, other: Self) -> Self
🔬This is a nightly-only experimental API. (core_intrinsics_fallbacks)
unsafe fndisjoint_bitor(self, other: Self) -> Self
core_intrinsics_fallbacks)Seesuper::disjoint_bitor; we just need the trait indirection to handledifferent types since calling intrinsics with generics doesn’t work.
Dyn Compatibility§
This trait isnotdyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.