Trait pointer_identity::Pointer
source · pub trait Pointer {
type Target;
// Required method
fn get(&self) -> *const Self::Target;
}
Expand description
Type that stores its value in an allocation and can retrieve a pointer to the value.