pub struct OutPt {
pub pt: Point64,
pub next: usize,
pub prev: usize,
pub outrec: usize,
pub horz: Option<usize>,
}Expand description
Output point in the clipping result (circular doubly-linked list) Direct port from clipper.engine.h line 55
Fields§
§pt: Point64§next: usize§prev: usize§outrec: usize§horz: Option<usize>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OutPt
impl RefUnwindSafe for OutPt
impl Send for OutPt
impl Sync for OutPt
impl Unpin for OutPt
impl UnwindSafe for OutPt
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