pub enum Altitude {
Unknown,
AboveSeaLevel(URational),
BelowSeaLevel(URational),
}Expand description
Altitude relative to sea level.
Combines EXIF’s GPSAltitudeRef (0 = above, 1 = below) with the magnitude
from GPSAltitude so the two cannot drift out of sync.
Variants§
Implementations§
Trait Implementations§
impl Copy for Altitude
impl Eq for Altitude
impl StructuralPartialEq for Altitude
Auto Trait Implementations§
impl Freeze for Altitude
impl RefUnwindSafe for Altitude
impl Send for Altitude
impl Sync for Altitude
impl Unpin for Altitude
impl UnsafeUnpin for Altitude
impl UnwindSafe for Altitude
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