pub struct Marker {
pub symbol: Option<MarkerSymbol>,
pub size: Option<u8>,
pub shape_properties: Option<ShapeProperties>,
}Expand description
A line/scatter/radar series’ marker (<c:marker>, CT_Marker).
Fields§
§symbol: Option<MarkerSymbol>§size: Option<u8>size — ST_MarkerSize, 2.=72.
shape_properties: Option<ShapeProperties>Implementations§
Source§impl Marker
impl Marker
pub fn new() -> Marker
pub fn with_symbol(self, symbol: MarkerSymbol) -> Marker
pub fn with_size(self, size: u8) -> Marker
pub fn with_shape_properties(self, properties: ShapeProperties) -> Marker
Trait Implementations§
impl StructuralPartialEq for Marker
Auto Trait Implementations§
impl Freeze for Marker
impl RefUnwindSafe for Marker
impl Send for Marker
impl Sync for Marker
impl Unpin for Marker
impl UnsafeUnpin for Marker
impl UnwindSafe for Marker
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