Expand description
This module provides a trait and some auxiliary types to help abstract and work with non-null pointers.
Structs§
Traits§
- NonNull
Ptr - A trait that abstracts non-null pointers.
- NonNull
PtrRef - The trait for the associated Ref type of
NonNullPtr, which is separated from theNonNullPtrtrait. FIXME: This is a workaround for the lack of GAT with lifetime in Verus. We can merge this trait back toNonNullPtronce it is supported.