Skip to main content

TableKit

Struct TableKit 

Source
pub struct TableKit<'a> { /* private fields */ }

Implementations§

Source§

impl<'a> TableKit<'a>

Source

pub fn new( id: impl Into<String>, provider: &'a dyn TableProvider, state: &'a mut TableState, ) -> Self

Source

pub fn with_columns(self, columns: Vec<Column>) -> Self

Source

pub const fn with_row_height(self, height: f32) -> Self

Source

pub const fn with_max_height(self, max_height: Option<f32>) -> Self

Source

pub const fn with_colors(self, org: &'a [[u8; 3]], user: &'a [[u8; 3]]) -> Self

Source

pub const fn with_auto_size_mode(self, mode: AutoSizeMode) -> Self

Source

pub const fn with_max_rows(self, max_rows: u64) -> Self

Source

pub const fn with_scroll_to_row(self, row_nr: u64, align: Align) -> Self

Set an optional row to scroll to during the next rendering pass.

Source

pub const fn with_striped(self, striped: bool) -> Self

Enable or disable alternating row background colors.

Source

pub const fn with_striping_color(self, color: Color32) -> Self

Provide a custom background color for alternating striped rows. If none is provided, it falls back to ui.visuals().faint_bg_color.

Source

pub const fn with_hover_color(self, color: Color32) -> Self

Set an optional custom background overlay color for hovered rows.

Source

pub fn show<F>( self, ui: &mut Ui, custom_cell_ui: F, ) -> Result<Response, TableError>
where F: FnMut(&mut Ui, &CellInfo, &dyn Row, Color32) -> Option<Response> + 'a,

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for TableKit<'a>

§

impl<'a> !Send for TableKit<'a>

§

impl<'a> !Sync for TableKit<'a>

§

impl<'a> !UnwindSafe for TableKit<'a>

§

impl<'a> Freeze for TableKit<'a>

§

impl<'a> Unpin for TableKit<'a>

§

impl<'a> UnsafeUnpin for TableKit<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, S> SimdFrom<T, S> for T
where S: Simd,

Source§

fn simd_from(_simd: S, value: T) -> T

Source§

impl<F, T, S> SimdInto<T, S> for F
where T: SimdFrom<F, S>, S: Simd,

Source§

fn simd_into(self, simd: S) -> T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.