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