pub enum Type3d {
Level = 1,
Altitude = 2,
Elevation = 3,
Reserved1 = 4,
Reserved2 = 5,
Custom1 = 6,
Custom2 = 7,
}Expand description
Informs about the type of the 3rd dimension of a 3D coordinate vector
Variants§
Level = 1
E.g. floor of a building
Altitude = 2
E.g. altitude (in the air) relative to ground level or mean sea level
Elevation = 3
E.g. elevation above mean-sea-level
Reserved1 = 4
Reserved for future types
Reserved2 = 5
Reserved for future types
Custom1 = 6
Reserved for custom types
Custom2 = 7
Reserved for custom types
Trait Implementations§
impl Copy for Type3d
impl Eq for Type3d
impl StructuralPartialEq for Type3d
Auto Trait Implementations§
impl Freeze for Type3d
impl RefUnwindSafe for Type3d
impl Send for Type3d
impl Sync for Type3d
impl Unpin for Type3d
impl UnwindSafe for Type3d
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