pub enum PointCloudFileFormat {
Pcd,
Ply,
Las,
Laz,
E57,
Copc,
}Expand description
Supported point cloud file formats detected from file extensions.
Variants§
Pcd
PCD (Point Cloud Data).
Ply
PLY (Polygon File Format).
Las
LAS (ASPRS LiDAR).
Laz
LAZ (compressed LAS).
E57
E57 (ASTM E2807).
Copc
COPC (Cloud Optimized Point Cloud).
Implementations§
Trait Implementations§
Source§impl Clone for PointCloudFileFormat
impl Clone for PointCloudFileFormat
Source§fn clone(&self) -> PointCloudFileFormat
fn clone(&self) -> PointCloudFileFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PointCloudFileFormat
impl Debug for PointCloudFileFormat
Source§impl Hash for PointCloudFileFormat
impl Hash for PointCloudFileFormat
Source§impl PartialEq for PointCloudFileFormat
impl PartialEq for PointCloudFileFormat
impl Copy for PointCloudFileFormat
impl Eq for PointCloudFileFormat
impl StructuralPartialEq for PointCloudFileFormat
Auto Trait Implementations§
impl Freeze for PointCloudFileFormat
impl RefUnwindSafe for PointCloudFileFormat
impl Send for PointCloudFileFormat
impl Sync for PointCloudFileFormat
impl Unpin for PointCloudFileFormat
impl UnsafeUnpin for PointCloudFileFormat
impl UnwindSafe for PointCloudFileFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more