pub struct FmtTableRule {
pub position: RelativePosition,
pub widths: Vec<usize>,
pub aligns: Vec<Alignment>,
}Expand description
A separator or alignment rule in a table.
Represent this kind of lines in tables: |––|:-:|–
Fields§
§position: RelativePosition§widths: Vec<usize>§aligns: Vec<Alignment>Implementations§
Source§impl FmtTableRule
impl FmtTableRule
pub fn set_nbcols(&mut self, nbcols: usize)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FmtTableRule
impl RefUnwindSafe for FmtTableRule
impl Send for FmtTableRule
impl Sync for FmtTableRule
impl Unpin for FmtTableRule
impl UnsafeUnpin for FmtTableRule
impl UnwindSafe for FmtTableRule
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