pub struct TableHeightIncrease<W = usize, P = PriorityNone> { /* private fields */ }
Expand description
A modification of a table to increase the table height.
Implementations§
Source§impl<W> TableHeightIncrease<W, PriorityNone>
impl<W> TableHeightIncrease<W, PriorityNone>
Sourcepub fn new(height: W) -> Selfwhere
W: Measurment<Height>,
pub fn new(height: W) -> Selfwhere
W: Measurment<Height>,
Creates a new object.
Sourcepub fn priority<P>(self) -> TableHeightIncrease<W, P>where
P: Peaker,
pub fn priority<P>(self) -> TableHeightIncrease<W, P>where
P: Peaker,
Sets a different priority logic.
Trait Implementations§
Source§impl<W: Clone, P: Clone> Clone for TableHeightIncrease<W, P>
impl<W: Clone, P: Clone> Clone for TableHeightIncrease<W, P>
Source§fn clone(&self) -> TableHeightIncrease<W, P>
fn clone(&self) -> TableHeightIncrease<W, P>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<R, W, P> TableOption<R> for TableHeightIncrease<W, P>
impl<R, W, P> TableOption<R> for TableHeightIncrease<W, P>
Auto Trait Implementations§
impl<W, P> Freeze for TableHeightIncrease<W, P>
impl<W, P> RefUnwindSafe for TableHeightIncrease<W, P>where
W: RefUnwindSafe,
P: RefUnwindSafe,
impl<W, P> Send for TableHeightIncrease<W, P>
impl<W, P> Sync for TableHeightIncrease<W, P>
impl<W, P> Unpin for TableHeightIncrease<W, P>
impl<W, P> UnwindSafe for TableHeightIncrease<W, P>where
W: UnwindSafe,
P: UnwindSafe,
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