Trait yoke::cartable_ptr::CartablePointerLike
source · pub unsafe trait CartablePointerLike: StableDeref + Sealed { }
Expand description
An object fully representable by a non-null pointer.
§Safety
Implementer safety:
into_raw
transfers ownership of the values referenced by StableDeref to the caller, if there is ownership to transferdrop_raw
returns ownership back to the impl, if there is ownership to transferinto_raw
must not return the sentinel pointer
Note: the pointer NonNull<Self::Raw>
may or may not be aligned and it should never
be dereferenced. Rust allows unaligned pointers; see std::ptr::read_unaligned
.
Object Safety§
This trait is not object safe.