1mod builtin;
2#[cfg(feature = "bytes")]
3mod bytes;
45/// Type that stores its value in an allocation and can retrieve a pointer to the value.
6pub trait Pointer {
7type Target: ?Sized;
89/// Get a read-only pointer to the value.
10fn get(&self) -> *const Self::Target;
11}