1 2 3 4 5 6
//! A collection of points. pub use super::Point; /// A list of [`Point`]. pub type Points = Vec<Point>;