pub struct TbodyBuilder(/* private fields */);Implementations§
Source§impl TbodyBuilder
impl TbodyBuilder
pub fn id(self, value: impl AttributeValue<String>) -> Self
pub fn class(self, value: impl AttributeValue<String>) -> Self
Source§impl TbodyBuilder
impl TbodyBuilder
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 TbodyBuilder
impl Builder for TbodyBuilder
Source§impl DomElement for TbodyBuilder
impl DomElement for TbodyBuilder
type Target = HtmlTableSectionElement
fn dom_element(&self) -> Self::Target
Source§impl From<TbodyBuilder> for Element
impl From<TbodyBuilder> for Element
Source§fn from(builder: TbodyBuilder) -> Self
fn from(builder: TbodyBuilder) -> Self
Converts to this type from the input type.
Source§impl From<TbodyBuilder> for ElementBuilder
impl From<TbodyBuilder> for ElementBuilder
Source§fn from(builder: TbodyBuilder) -> Self
fn from(builder: TbodyBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TbodyBuilder
impl !RefUnwindSafe for TbodyBuilder
impl !Send for TbodyBuilder
impl !Sync for TbodyBuilder
impl Unpin for TbodyBuilder
impl !UnwindSafe for TbodyBuilder
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