pub struct StairsPlotF32<'a> { /* private fields */ }Expand description
Simple stairs plot for f32 data
Implementations§
Source§impl<'a> StairsPlotF32<'a>
impl<'a> StairsPlotF32<'a>
Sourcepub fn new(label: &'a str, x_data: &'a [f32], y_data: &'a [f32]) -> Self
pub fn new(label: &'a str, x_data: &'a [f32], y_data: &'a [f32]) -> Self
Create a new stairs plot with f32 data
Sourcepub fn with_flags(self, flags: StairsFlags) -> Self
pub fn with_flags(self, flags: StairsFlags) -> Self
Set stairs flags for customization
Trait Implementations§
Source§impl<'a> PlotData for StairsPlotF32<'a>
impl<'a> PlotData for StairsPlotF32<'a>
Auto Trait Implementations§
impl<'a> Freeze for StairsPlotF32<'a>
impl<'a> RefUnwindSafe for StairsPlotF32<'a>
impl<'a> Send for StairsPlotF32<'a>
impl<'a> Sync for StairsPlotF32<'a>
impl<'a> Unpin for StairsPlotF32<'a>
impl<'a> UnwindSafe for StairsPlotF32<'a>
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