pub struct ChartSeries {
pub x_points: *mut i32,
pub y_points: *mut i32,
pub color: Color,
pub start_point: u32,
/* private fields */
}Fields§
§x_points: *mut i32§y_points: *mut i32§color: Color§start_point: u32Implementations§
Source§impl ChartSeries
impl ChartSeries
pub fn x_ext_buf_assigned(&self) -> bool
pub fn y_ext_buf_assigned(&self) -> bool
pub fn x_axis_sec(&self) -> bool
pub fn y_axis_sec(&self) -> bool
Auto Trait Implementations§
impl Freeze for ChartSeries
impl RefUnwindSafe for ChartSeries
impl !Send for ChartSeries
impl !Sync for ChartSeries
impl Unpin for ChartSeries
impl UnwindSafe for ChartSeries
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