pub struct VerticalExtent {
pub minimum_height: f64,
pub maximum_height: f64,
pub unit: Option<Unit>,
}Expand description
A vertical height range of applicability. Depths have negative height values.
WKT2 keyword: VERTICALEXTENT.
Fields§
§minimum_height: f64The minimum height (most negative = deepest).
maximum_height: f64The maximum height.
unit: Option<Unit>The unit for the height values. If absent, metres are assumed.
Trait Implementations§
Source§impl Clone for VerticalExtent
impl Clone for VerticalExtent
Source§fn clone(&self) -> VerticalExtent
fn clone(&self) -> VerticalExtent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VerticalExtent
impl Debug for VerticalExtent
Source§impl Display for VerticalExtent
impl Display for VerticalExtent
Source§impl PartialEq for VerticalExtent
impl PartialEq for VerticalExtent
impl StructuralPartialEq for VerticalExtent
Auto Trait Implementations§
impl Freeze for VerticalExtent
impl RefUnwindSafe for VerticalExtent
impl Send for VerticalExtent
impl Sync for VerticalExtent
impl Unpin for VerticalExtent
impl UnsafeUnpin for VerticalExtent
impl UnwindSafe for VerticalExtent
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