pub trait PointCloudReader {
// Required method
fn read_point_cloud<P: AsRef<Path>>(path: P) -> Result<PointCloud<Point3f>>;
}
Expand description
Trait for reading point clouds from files
Required Methods§
fn read_point_cloud<P: AsRef<Path>>(path: P) -> Result<PointCloud<Point3f>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.