Struct silkenweb::elements::QBuilder[][src]

pub struct QBuilder(_);

Implementations

impl QBuilder[src]

pub fn id(self, value: impl AttributeValue<String>) -> QBuilder[src]

pub fn class(self, value: impl AttributeValue<String>) -> QBuilder[src]

pub fn cite(self, value: impl AttributeValue<String>) -> QBuilder[src]

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.

impl QBuilder[src]

pub fn on_blur(
    self,
    f: impl FnMut(FocusEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_click(
    self,
    f: impl FnMut(MouseEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_change(
    self,
    f: impl FnMut(Event, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_dblclick(
    self,
    f: impl FnMut(MouseEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_focusout(
    self,
    f: impl FnMut(FocusEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_input(
    self,
    f: impl FnMut(InputEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_keydown(
    self,
    f: impl FnMut(KeyboardEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn on_keyup(
    self,
    f: impl FnMut(KeyboardEvent, HtmlQuoteElement) + 'static
) -> QBuilder
[src]

pub fn effect(self, f: impl Effect<HtmlQuoteElement>) -> QBuilder[src]

impl QBuilder[src]

pub fn text(self, child: impl Text) -> QBuilder[src]

pub fn child<Child>(self, c: Child) -> QBuilder where
    Child: Into<Element>, 
[src]

Trait Implementations

impl Builder for QBuilder[src]

type Target = Q

impl DomElement for QBuilder[src]

impl From<QBuilder> for Element[src]

impl From<QBuilder> for ElementBuilder[src]

Auto Trait Implementations

impl !RefUnwindSafe for QBuilder

impl !Send for QBuilder

impl !Sync for QBuilder

impl Unpin for QBuilder

impl !UnwindSafe for QBuilder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.