pub struct ContourLine {
pub level: f64,
pub points: Vec<ContourPoint>,
pub is_closed: bool,
}Expand description
A single contour line at a specific elevation level
Fields§
§level: f64§points: Vec<ContourPoint>§is_closed: boolTrait Implementations§
Source§impl Clone for ContourLine
impl Clone for ContourLine
Source§fn clone(&self) -> ContourLine
fn clone(&self) -> ContourLine
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 moreAuto Trait Implementations§
impl Freeze for ContourLine
impl RefUnwindSafe for ContourLine
impl Send for ContourLine
impl Sync for ContourLine
impl Unpin for ContourLine
impl UnsafeUnpin for ContourLine
impl UnwindSafe for ContourLine
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