pub struct TablePaginator {
pub available_height: Unit,
pub header_height: Unit,
pub row_height: Unit,
pub max_pages: usize,
}Expand description
Fixed-point bounded table pagination engine.
Fields§
§available_height: UnitHeight available on each continuation page.
header_height: UnitHeader height.
row_height: UnitFixed row height after external text measurement.
max_pages: usizeMaximum generated pages.
Implementations§
Source§impl TablePaginator
impl TablePaginator
Auto Trait Implementations§
impl Freeze for TablePaginator
impl RefUnwindSafe for TablePaginator
impl Send for TablePaginator
impl Sync for TablePaginator
impl Unpin for TablePaginator
impl UnsafeUnpin for TablePaginator
impl UnwindSafe for TablePaginator
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
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.