1//! Traits for vectors of pointers.
2
3mod const_ptr;
4mod mut_ptr;
5
6mod sealed {
7 pub trait Sealed {}
8}
9
10pub use const_ptr::*;
11pub use mut_ptr::*;
12