pub struct PointMark {
pub center: [f32; 2],
pub size: f32,
pub shape: MarkerShape,
pub fill: FillStyle,
pub stroke: StrokeStyle,
}Expand description
A point mark (scatter markers).
Fields§
§center: [f32; 2]Center position.
size: f32Marker size (diameter in pixels).
shape: MarkerShapeMarker shape.
fill: FillStyleFill style.
stroke: StrokeStyleStroke style.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PointMark
impl RefUnwindSafe for PointMark
impl Send for PointMark
impl Sync for PointMark
impl Unpin for PointMark
impl UnsafeUnpin for PointMark
impl UnwindSafe for PointMark
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