pub struct HorzSegment {
pub left_op: Option<usize>,
pub right_op: Option<usize>,
pub left_to_right: bool,
}Expand description
Horizontal segment for horizontal edge processing Direct port from clipper.engine.h line 148
Fields§
§left_op: Option<usize>§right_op: Option<usize>§left_to_right: boolImplementations§
Trait Implementations§
Source§impl Clone for HorzSegment
impl Clone for HorzSegment
Source§fn clone(&self) -> HorzSegment
fn clone(&self) -> HorzSegment
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 HorzSegment
impl Debug for HorzSegment
Auto Trait Implementations§
impl Freeze for HorzSegment
impl RefUnwindSafe for HorzSegment
impl Send for HorzSegment
impl Sync for HorzSegment
impl Unpin for HorzSegment
impl UnwindSafe for HorzSegment
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