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