pub trait PointCloudWriter {
// Required method
fn write_point_cloud<P: AsRef<Path>>(
cloud: &PointCloud<Point3f>,
path: P,
) -> Result<()>;
}
Expand description
Trait for writing point clouds to files
Required Methods§
fn write_point_cloud<P: AsRef<Path>>( cloud: &PointCloud<Point3f>, path: P, ) -> Result<()>
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.