pub struct LasHeader {
pub version_major: u8,
pub version_minor: u8,
pub point_count: u32,
pub x_scale: f64,
pub y_scale: f64,
pub z_scale: f64,
pub x_offset: f64,
pub y_offset: f64,
pub z_offset: f64,
}Fields§
§version_major: u8§version_minor: u8§point_count: u32§x_scale: f64§y_scale: f64§z_scale: f64§x_offset: f64§y_offset: f64§z_offset: f64Auto Trait Implementations§
impl Freeze for LasHeader
impl RefUnwindSafe for LasHeader
impl Send for LasHeader
impl Sync for LasHeader
impl Unpin for LasHeader
impl UnsafeUnpin for LasHeader
impl UnwindSafe for LasHeader
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