pub trait Pointer {
type Target: ?Sized;
// 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.
pub trait Pointer {
type Target: ?Sized;
// Required method
fn get(&self) -> *const Self::Target;
}Type that stores its value in an allocation and can retrieve a pointer to the value.