pub struct FORMAT_NO_BORDER_LINE_SEPARATOR { /* private fields */ }
Expand description
Methods from Deref<Target = TableFormat>§
Sourcepub fn get_padding(&self) -> (usize, usize)
pub fn get_padding(&self) -> (usize, usize)
Return a tuple with left and right padding
Sourcepub fn get_indent(&self) -> usize
pub fn get_indent(&self) -> usize
Get global indentation in spaces used when rendering a table
Sourcepub fn get_column_separator(&self, pos: ColumnPosition) -> Option<char>
pub fn get_column_separator(&self, pos: ColumnPosition) -> Option<char>
Returns the character used to separate columns.
pos
specify if the separator is left/right final or internal to the table
Trait Implementations§
Source§impl Deref for FORMAT_NO_BORDER_LINE_SEPARATOR
impl Deref for FORMAT_NO_BORDER_LINE_SEPARATOR
Source§type Target = TableFormat
type Target = TableFormat
The resulting type after dereferencing.
Source§fn deref(&self) -> &TableFormat
fn deref(&self) -> &TableFormat
Dereferences the value.
impl LazyStatic for FORMAT_NO_BORDER_LINE_SEPARATOR
Auto Trait Implementations§
impl Freeze for FORMAT_NO_BORDER_LINE_SEPARATOR
impl RefUnwindSafe for FORMAT_NO_BORDER_LINE_SEPARATOR
impl Send for FORMAT_NO_BORDER_LINE_SEPARATOR
impl Sync for FORMAT_NO_BORDER_LINE_SEPARATOR
impl Unpin for FORMAT_NO_BORDER_LINE_SEPARATOR
impl UnwindSafe for FORMAT_NO_BORDER_LINE_SEPARATOR
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