pub struct Builder<LH, TH, T, const WIDTH: usize> { /* private fields */ }Implementations§
Source§impl<LH: AsRef<str>, TH: AsRef<str>, T: AsRef<str>, const WIDTH: usize> Builder<LH, TH, T, WIDTH>
impl<LH: AsRef<str>, TH: AsRef<str>, T: AsRef<str>, const WIDTH: usize> Builder<LH, TH, T, WIDTH>
pub fn header(&mut self, header: impl Into<Row<LH, TH, WIDTH>>)
pub fn alignments( &mut self, alignments: impl Into<Row<Alignment, Alignment, WIDTH>>, )
pub fn default_alignments(&mut self)
pub fn row(&mut self, row: impl Into<Row<LH, T, WIDTH>>)
pub fn finish(self) -> Table<LH, TH, T, WIDTH>
Trait Implementations§
Auto Trait Implementations§
impl<LH, TH, T, const WIDTH: usize> Freeze for Builder<LH, TH, T, WIDTH>
impl<LH, TH, T, const WIDTH: usize> RefUnwindSafe for Builder<LH, TH, T, WIDTH>
impl<LH, TH, T, const WIDTH: usize> Send for Builder<LH, TH, T, WIDTH>
impl<LH, TH, T, const WIDTH: usize> Sync for Builder<LH, TH, T, WIDTH>
impl<LH, TH, T, const WIDTH: usize> Unpin for Builder<LH, TH, T, WIDTH>
impl<LH, TH, T, const WIDTH: usize> UnwindSafe for Builder<LH, TH, T, WIDTH>
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