leptos_struct_table

Struct DefaultTableCellRendererProps

Source
pub struct DefaultTableCellRendererProps<Row, T, M>
where Row: Send + Sync + 'static, T: CellValue<M> + Send + Sync + Clone + 'static, M: 'static,
{ pub class: String, pub value: Signal<T>, pub row: RwSignal<Row>, pub index: usize, pub options: T::RenderOptions, pub _marker: PhantomData<M>, }
Expand description

Props for the DefaultTableCellRenderer component.

The default cell renderer. Uses the <td> element.

§Required Props

  • class: String
    • The class attribute for the cell element. Generated by the classes provider.
  • value: Signal<T>
    • The value to display.
  • row: RwSignal<Row>
    • Event handler called when the cell is changed. In this default renderer this will never happen.
  • index: usize
    • The index of the column. Starts at 0.
  • options: [T::RenderOptions]

§Optional Props

Fields§

§class: String

The class attribute for the cell element. Generated by the classes provider.

§value: Signal<T>

The value to display.

§row: RwSignal<Row>

Event handler called when the cell is changed. In this default renderer this will never happen.

§index: usize

The index of the column. Starts at 0.

§options: T::RenderOptions§_marker: PhantomData<M>

Implementations§

Source§

impl<Row, T, M> DefaultTableCellRendererProps<Row, T, M>
where Row: Send + Sync + 'static, T: CellValue<M> + Send + Sync + Clone + 'static, M: 'static,

Source

pub fn builder() -> DefaultTableCellRendererPropsBuilder<Row, T, M, ((), (), (), (), (), ())>

Create a builder for building DefaultTableCellRendererProps. On the builder, call .class(...), .value(...), .row(...), .index(...), .options(...), ._marker(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of DefaultTableCellRendererProps.

Trait Implementations§

Source§

impl<Row, T, M> Props for DefaultTableCellRendererProps<Row, T, M>
where Row: Send + Sync + 'static, T: CellValue<M> + Send + Sync + Clone + 'static, M: 'static,

Source§

type Builder = DefaultTableCellRendererPropsBuilder<Row, T, M>

Source§

fn builder() -> Self::Builder

Auto Trait Implementations§

§

impl<Row, T, M> Freeze for DefaultTableCellRendererProps<Row, T, M>
where <T as CellValue<M>>::RenderOptions: Freeze,

§

impl<Row, T, M> RefUnwindSafe for DefaultTableCellRendererProps<Row, T, M>

§

impl<Row, T, M> Send for DefaultTableCellRendererProps<Row, T, M>
where M: Send,

§

impl<Row, T, M> Sync for DefaultTableCellRendererProps<Row, T, M>
where M: Sync,

§

impl<Row, T, M> Unpin for DefaultTableCellRendererProps<Row, T, M>
where <T as CellValue<M>>::RenderOptions: Unpin, M: Unpin,

§

impl<Row, T, M> UnwindSafe for DefaultTableCellRendererProps<Row, T, M>

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<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<El, T, Marker> IntoElementMaybeSignal<T, Marker> for El
where El: IntoElementMaybeSignalType<T, Marker>, Marker: ?Sized,

Source§

impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
where T: From<Js> + Clone,

Source§

impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for El
where El: IntoElementsMaybeSignalType<T, Marker>, Marker: ?Sized,

Source§

impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
where T: From<Js> + Clone,

Source§

impl<T> StorageAccess<T> for T

Source§

fn as_borrowed(&self) -> &T

Borrows the value.
Source§

fn into_taken(self) -> T

Takes the value.
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.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T