pub struct TheadBuilder(/* private fields */);Implementations§
Source§impl TheadBuilder
impl TheadBuilder
pub fn id(self, value: impl AttributeValue<String>) -> Self
pub fn class(self, value: impl AttributeValue<String>) -> Self
Source§impl TheadBuilder
impl TheadBuilder
pub fn on_blur( self, f: impl 'static + FnMut(FocusEvent, HtmlTableSectionElement), ) -> Self
pub fn on_click( self, f: impl 'static + FnMut(MouseEvent, HtmlTableSectionElement), ) -> Self
pub fn on_change( self, f: impl 'static + FnMut(Event, HtmlTableSectionElement), ) -> Self
pub fn on_dblclick( self, f: impl 'static + FnMut(MouseEvent, HtmlTableSectionElement), ) -> Self
pub fn on_focusout( self, f: impl 'static + FnMut(FocusEvent, HtmlTableSectionElement), ) -> Self
pub fn on_input( self, f: impl 'static + FnMut(InputEvent, HtmlTableSectionElement), ) -> Self
pub fn on_keydown( self, f: impl 'static + FnMut(KeyboardEvent, HtmlTableSectionElement), ) -> Self
pub fn on_keyup( self, f: impl 'static + FnMut(KeyboardEvent, HtmlTableSectionElement), ) -> Self
pub fn effect(self, f: impl Effect<HtmlTableSectionElement>) -> Self
Trait Implementations§
Source§impl Builder for TheadBuilder
impl Builder for TheadBuilder
Source§impl DomElement for TheadBuilder
impl DomElement for TheadBuilder
type Target = HtmlTableSectionElement
fn dom_element(&self) -> Self::Target
Source§impl From<TheadBuilder> for Element
impl From<TheadBuilder> for Element
Source§fn from(builder: TheadBuilder) -> Self
fn from(builder: TheadBuilder) -> Self
Converts to this type from the input type.
Source§impl From<TheadBuilder> for ElementBuilder
impl From<TheadBuilder> for ElementBuilder
Source§fn from(builder: TheadBuilder) -> Self
fn from(builder: TheadBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TheadBuilder
impl !RefUnwindSafe for TheadBuilder
impl !Send for TheadBuilder
impl !Sync for TheadBuilder
impl Unpin for TheadBuilder
impl !UnwindSafe for TheadBuilder
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