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