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