pub struct Header {
pub offset_point_data: u32,
pub point_record_length: u16,
pub n_point_records: u64,
pub scale_factor_x: f64,
pub scale_factor_y: f64,
pub scale_factor_z: f64,
pub offset_x: f64,
pub offset_y: f64,
pub offset_z: f64,
}Fields§
§offset_point_data: u32§point_record_length: u16§n_point_records: u64§scale_factor_x: f64§scale_factor_y: f64§scale_factor_z: f64§offset_x: f64§offset_y: f64§offset_z: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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