Trait Nullable
Source pub trait Nullable: Delta {
const NULL: Self;
}
Expand description
A index which can contain null
§Safety
ⓘfn for_all_a(a: *mut u8) {
assert_eq!(a, <Self as Delta>::add(Self::NULL, a));
assert_eq!(Self::NULL, <Self as Delta>::sub(a, a));
assert_eq!(Self::NULL, <Self as Delta>::sub_unchecked(a, a));
}
The value No change in two pointer locations,
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".