pub struct GridRenderOptions {
pub join_wrapped: bool,
pub with_sequences: bool,
pub escape_sequences: bool,
pub include_empty_cells: bool,
pub use_tmux_cell_capacity: bool,
pub trim_spaces: bool,
}Expand description
Rendering flags for tmux-style grid capture.
Fields§
§join_wrapped: boolWhether wrapped rows should omit separating newlines.
with_sequences: boolWhether to emit ANSI SGR and OSC sequences inline.
escape_sequences: boolWhether control sequences should be octal-escaped.
include_empty_cells: boolWhether trailing empty cells should be included.
use_tmux_cell_capacity: boolWhether included empty cells should stop at tmux’s allocation bucket.
trim_spaces: boolWhether trailing spaces should be trimmed from the rendered line.
Trait Implementations§
Source§impl Clone for GridRenderOptions
impl Clone for GridRenderOptions
Source§fn clone(&self) -> GridRenderOptions
fn clone(&self) -> GridRenderOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GridRenderOptions
Source§impl Debug for GridRenderOptions
impl Debug for GridRenderOptions
Source§impl Default for GridRenderOptions
impl Default for GridRenderOptions
impl Eq for GridRenderOptions
Source§impl PartialEq for GridRenderOptions
impl PartialEq for GridRenderOptions
Source§fn eq(&self, other: &GridRenderOptions) -> bool
fn eq(&self, other: &GridRenderOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GridRenderOptions
Auto Trait Implementations§
impl Freeze for GridRenderOptions
impl RefUnwindSafe for GridRenderOptions
impl Send for GridRenderOptions
impl Sync for GridRenderOptions
impl Unpin for GridRenderOptions
impl UnsafeUnpin for GridRenderOptions
impl UnwindSafe for GridRenderOptions
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