Enum las::GpsTimeType [] [src]

pub enum GpsTimeType {
    Week,
    Standard,
}

The meaning of GPS time in the point records.

Variants

GPS Week Time (the same as previous versions of LAS).

Standard GPS Time minus 1e9.

Methods

impl GpsTimeType
[src]

[src]

Returns true if this time type is gps standard time.

Examples

use las::GpsTimeType;
assert!(!GpsTimeType::Week.is_standard());
assert!(GpsTimeType::Standard.is_standard());

Trait Implementations

impl Clone for GpsTimeType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for GpsTimeType
[src]

impl Debug for GpsTimeType
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for GpsTimeType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl From<u16> for GpsTimeType
[src]

[src]

Performs the conversion.

impl Default for GpsTimeType
[src]

[src]

Returns the "default value" for a type. Read more