pub struct BarplotGraphics { /* private fields */ }Expand description
Graphics area for horizontal bar charts with optional fractional block rendering.
Trait Implementations§
Source§impl Clone for BarplotGraphics
impl Clone for BarplotGraphics
Source§fn clone(&self) -> BarplotGraphics
fn clone(&self) -> BarplotGraphics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BarplotGraphics
impl Debug for BarplotGraphics
Source§impl GraphicsArea for BarplotGraphics
impl GraphicsArea for BarplotGraphics
Source§fn render_row(&self, row: usize, out: &mut RowBuffer)
fn render_row(&self, row: usize, out: &mut RowBuffer)
Fills
out with the cells for the given row index.Source§fn blank_char(&self) -> char
fn blank_char(&self) -> char
The blank character used to fill empty cells (default: space).
Source§fn prepare_render(&mut self)
fn prepare_render(&mut self)
Called before rendering begins. Override for pre-render setup.
Source§fn finish_render(&mut self)
fn finish_render(&mut self)
Called after rendering completes. Override for post-render cleanup.
Auto Trait Implementations§
impl Freeze for BarplotGraphics
impl RefUnwindSafe for BarplotGraphics
impl Send for BarplotGraphics
impl Sync for BarplotGraphics
impl Unpin for BarplotGraphics
impl UnsafeUnpin for BarplotGraphics
impl UnwindSafe for BarplotGraphics
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