pub struct LocalMinima {
pub vertex: usize,
pub polytype: PathType,
pub is_open: bool,
}Expand description
Local minimum vertex where ascending and descending bounds meet Direct port from clipper.engine.h line 131
Fields§
§vertex: usize§polytype: PathType§is_open: boolImplementations§
Trait Implementations§
Source§impl Clone for LocalMinima
impl Clone for LocalMinima
Source§fn clone(&self) -> LocalMinima
fn clone(&self) -> LocalMinima
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 LocalMinima
impl RefUnwindSafe for LocalMinima
impl Send for LocalMinima
impl Sync for LocalMinima
impl Unpin for LocalMinima
impl UnwindSafe for LocalMinima
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