pub trait DisjointBitOr: Copy + 'static {
// Required method
unsafe fn disjoint_bitor(self, other: Self) -> Self;
}
π¬This is a nightly-only experimental API. (
core_intrinsics_fallbacks
)Required MethodsΒ§
Sourceunsafe fn disjoint_bitor(self, other: Self) -> Self
π¬This is a nightly-only experimental API. (core_intrinsics_fallbacks
)
unsafe fn disjoint_bitor(self, other: Self) -> Self
core_intrinsics_fallbacks
)See super::disjoint_bitor
; we just need the trait indirection to handle
different types since calling intrinsics with generics doesnβt work.
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.