pub struct PathInfo {
pub paths: PathsD,
pub is_open_path: bool,
pub fillrule: FillRule,
pub brush_color: u32,
pub pen_color: u32,
pub pen_width: f64,
pub show_coords: bool,
}Expand description
Stores a set of paths with their rendering attributes.
Direct port from C++ PathInfo class.
Fields§
§paths: PathsD§is_open_path: bool§fillrule: FillRule§brush_color: u32§pen_color: u32§pen_width: f64§show_coords: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathInfo
impl RefUnwindSafe for PathInfo
impl Send for PathInfo
impl Sync for PathInfo
impl Unpin for PathInfo
impl UnwindSafe for PathInfo
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