pub struct FrameRenderer;Expand description
Frame renderer with various rendering options
Implementations§
Source§impl FrameRenderer
impl FrameRenderer
Sourcepub fn render_full(frame: &Frame) -> Result<String, Error>
pub fn render_full(frame: &Frame) -> Result<String, Error>
Render the frame with all features enabled (including encoded numbers if present)
Sourcepub fn render_without_row_numbers(frame: &Frame) -> Result<String, Error>
pub fn render_without_row_numbers(frame: &Frame) -> Result<String, Error>
Render the frame without encoded numbers
Sourcepub fn render_full_to(frame: &Frame, f: &mut dyn Write) -> Result
pub fn render_full_to(frame: &Frame, f: &mut dyn Write) -> Result
Render the frame with all features to the given formatter
Sourcepub fn render_without_row_numbers_to(frame: &Frame, f: &mut dyn Write) -> Result
pub fn render_without_row_numbers_to(frame: &Frame, f: &mut dyn Write) -> Result
Render the frame without encoded numbers to the given formatter
Auto Trait Implementations§
impl Freeze for FrameRenderer
impl RefUnwindSafe for FrameRenderer
impl Send for FrameRenderer
impl Sync for FrameRenderer
impl Unpin for FrameRenderer
impl UnwindSafe for FrameRenderer
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