pub struct LasHeaderV2 {
pub version_major: u8,
pub version_minor: u8,
pub point_data_format: u8,
pub point_count: u64,
pub scale: [f64; 3],
pub offset: [f64; 3],
}Expand description
LAS 1.4 header stub.
Fields§
§version_major: u8§version_minor: u8§point_data_format: u8§point_count: u64§scale: [f64; 3]§offset: [f64; 3]Auto Trait Implementations§
impl Freeze for LasHeaderV2
impl RefUnwindSafe for LasHeaderV2
impl Send for LasHeaderV2
impl Sync for LasHeaderV2
impl Unpin for LasHeaderV2
impl UnsafeUnpin for LasHeaderV2
impl UnwindSafe for LasHeaderV2
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more