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