[][src]Struct laz::las::gps::GpsTime

pub struct GpsTime {
    pub value: i64,
}

Struct to store GpsTime

As the value (f64 as per LAS spec) needs to be reinterpreted (not simply converted with 'as') to i64 (or u64) during compression / decompression this struct provides a convenient wrapper

Fields

value: i64

Trait Implementations

impl Add<f64> for GpsTime[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i64> for GpsTime[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<f64> for GpsTime[src]

impl AddAssign<i64> for GpsTime[src]

impl Clone for GpsTime[src]

impl Copy for GpsTime[src]

impl Debug for GpsTime[src]

impl Default for GpsTime[src]

impl From<f64> for GpsTime[src]

impl From<i64> for GpsTime[src]

impl LasGpsTime for GpsTime[src]

impl Packable for GpsTime[src]

impl PartialEq<GpsTime> for GpsTime[src]

impl StructuralPartialEq for GpsTime[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.