pub struct TableHeightLimit<W = usize, P = PriorityNone> { /* private fields */ }
Expand description
A modification of a table to decrease the table height.
Implementations§
Source§impl<W> TableHeightLimit<W, PriorityNone>
impl<W> TableHeightLimit<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) -> TableHeightLimit<W, P>where
P: Peaker,
pub fn priority<P>(self) -> TableHeightLimit<W, P>where
P: Peaker,
Sets a different priority logic.
Trait Implementations§
Source§impl<R, W, P> TableOption<R> for TableHeightLimit<W, P>
impl<R, W, P> TableOption<R> for TableHeightLimit<W, P>
Auto Trait Implementations§
impl<W, P> Freeze for TableHeightLimit<W, P>
impl<W, P> RefUnwindSafe for TableHeightLimit<W, P>where
W: RefUnwindSafe,
P: RefUnwindSafe,
impl<W, P> Send for TableHeightLimit<W, P>
impl<W, P> Sync for TableHeightLimit<W, P>
impl<W, P> Unpin for TableHeightLimit<W, P>
impl<W, P> UnwindSafe for TableHeightLimit<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