pub struct Series { /* private fields */ }Expand description
Handle to an lv_chart_series_t *. Owned by the Chart; non-owning copy.
Implementations§
Source§impl Series
impl Series
Sourcepub fn next_value(self, v: i32) -> Self
pub fn next_value(self, v: i32) -> Self
Push a new value using the chart’s current update mode.
Sourcepub fn set_value_by_idx(self, idx: u32, v: i32) -> Self
pub fn set_value_by_idx(self, idx: u32, v: i32) -> Self
Set a specific point index.
Trait Implementations§
impl Copy for Series
impl Send for Series
impl Sync for Series
Auto Trait Implementations§
impl Freeze for Series
impl RefUnwindSafe for Series
impl Unpin for Series
impl UnsafeUnpin for Series
impl UnwindSafe for Series
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