pub trait RawPtrPerm {
type Ptr;
type Target;
// Required methods
spec fn ptr(self) -> *mut Self::Target;
spec fn addr(self) -> usize;
}Expand description
A verification-only trait that abstracts the permission that can be obtained from a raw pointer.