pub enum LidarFormat {
Las,
Laz,
Copc,
Ply,
E57,
}Expand description
Supported LiDAR file formats in the unified API.
Variants§
Las
LAS (uncompressed).
Laz
LAZ (LASzip-compressed LAS).
Copc
COPC (Cloud Optimized Point Cloud, usually .copc.las).
Ply
PLY (ASCII or binary).
E57
E57.
Implementations§
Trait Implementations§
Source§impl Clone for LidarFormat
impl Clone for LidarFormat
Source§fn clone(&self) -> LidarFormat
fn clone(&self) -> LidarFormat
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 LidarFormat
impl Debug for LidarFormat
Source§impl PartialEq for LidarFormat
impl PartialEq for LidarFormat
impl Copy for LidarFormat
impl Eq for LidarFormat
impl StructuralPartialEq for LidarFormat
Auto Trait Implementations§
impl Freeze for LidarFormat
impl RefUnwindSafe for LidarFormat
impl Send for LidarFormat
impl Sync for LidarFormat
impl Unpin for LidarFormat
impl UnsafeUnpin for LidarFormat
impl UnwindSafe for LidarFormat
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