pub struct LineEdge {
pub prev: Option<u32>,
pub next: Option<u32>,
pub x: i32,
pub dx: i32,
pub first_y: i32,
pub last_y: i32,
pub winding: i8,
}
Fields§
§prev: Option<u32>
§next: Option<u32>
§x: i32
§dx: i32
§first_y: i32
§last_y: i32
§winding: i8
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineEdge
impl RefUnwindSafe for LineEdge
impl Send for LineEdge
impl Sync for LineEdge
impl Unpin for LineEdge
impl UnwindSafe for LineEdge
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