pub struct LargeFile {
pub number_of_point_records: u64,
pub number_of_points_by_return: [u64; 15],
}
Fields§
§number_of_point_records: u64
las 1.4: This field contains the total number of point records in the file.
Note that this field must always be correctly populated, regardless of legacy mode intent.
number_of_points_by_return: [u64; 15]
las 1.4: These fields contain an array of the total point records per return.
The first value will be the total number of records from the first return, the second contains the total number for return two, and so on up to fifteen returns. Note that these fields must always be correctly populated, regardless of legacy mode intent.
Trait Implementations§
impl StructuralPartialEq for LargeFile
Auto Trait Implementations§
impl Freeze for LargeFile
impl RefUnwindSafe for LargeFile
impl Send for LargeFile
impl Sync for LargeFile
impl Unpin for LargeFile
impl UnwindSafe for LargeFile
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