pub struct Hatch {
pub cross: bool,
pub angle: f64,
pub sep: f64,
pub width: f64,
pub color: String,
}Expand description
Hatch fill pattern.
Fields§
§cross: bool§angle: f64Line angle in degrees, measured in pic coordinates.
sep: f64Distance between hatch lines in inches.
width: f64Hatch stroke width in points.
color: StringTrait Implementations§
impl StructuralPartialEq for Hatch
Auto Trait Implementations§
impl Freeze for Hatch
impl RefUnwindSafe for Hatch
impl Send for Hatch
impl Sync for Hatch
impl Unpin for Hatch
impl UnsafeUnpin for Hatch
impl UnwindSafe for Hatch
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