Skip to main content

DisjointBitOr

Trait DisjointBitOr 

Source
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§

Source

unsafe fn disjoint_bitor(self, other: Self) -> Self

🔬This is a nightly-only experimental API. (core_intrinsics_fallbacks)
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).

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.

Implementors§