pub struct PointMark {
pub x_m: f32,
pub y_m: f32,
pub text: String,
pub color: u32,
pub visible: bool,
}Expand description
Point mark information.
Fields§
§x_m: f32X coordinate (meters)
y_m: f32Y coordinate (meters)
text: StringText label
color: u32RGB color
visible: boolVisible flag
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 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