pub struct QBuilder(/* private fields */);
Implementations§
Source§impl QBuilder
impl QBuilder
pub fn id(self, value: impl AttributeValue<String>) -> Self
pub fn class(self, value: impl AttributeValue<String>) -> Self
Sourcepub fn cite(self, value: impl AttributeValue<String>) -> Self
pub fn cite(self, value: impl AttributeValue<String>) -> Self
The value of this attribute is a URL that designates a source document or message for the information quoted. This attribute is intended to point to information explaining the context or the reference for the quote.
Source§impl QBuilder
impl QBuilder
pub fn on_blur( self, f: impl 'static + FnMut(FocusEvent, HtmlQuoteElement), ) -> Self
pub fn on_click( self, f: impl 'static + FnMut(MouseEvent, HtmlQuoteElement), ) -> Self
pub fn on_change(self, f: impl 'static + FnMut(Event, HtmlQuoteElement)) -> Self
pub fn on_dblclick( self, f: impl 'static + FnMut(MouseEvent, HtmlQuoteElement), ) -> Self
pub fn on_focusout( self, f: impl 'static + FnMut(FocusEvent, HtmlQuoteElement), ) -> Self
pub fn on_input( self, f: impl 'static + FnMut(InputEvent, HtmlQuoteElement), ) -> Self
pub fn on_keydown( self, f: impl 'static + FnMut(KeyboardEvent, HtmlQuoteElement), ) -> Self
pub fn on_keyup( self, f: impl 'static + FnMut(KeyboardEvent, HtmlQuoteElement), ) -> Self
pub fn effect(self, f: impl Effect<HtmlQuoteElement>) -> Self
Trait Implementations§
Source§impl DomElement for QBuilder
impl DomElement for QBuilder
type Target = HtmlQuoteElement
fn dom_element(&self) -> Self::Target
Auto Trait Implementations§
impl Freeze for QBuilder
impl !RefUnwindSafe for QBuilder
impl !Send for QBuilder
impl !Sync for QBuilder
impl Unpin for QBuilder
impl !UnwindSafe for QBuilder
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