pub struct DelBuilder(/* private fields */);
Implementations§
Source§impl DelBuilder
impl DelBuilder
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 URI for a resource that explains the change (for example, meeting minutes).
Sourcepub fn datetime(self, value: impl AttributeValue<String>) -> Self
pub fn datetime(self, value: impl AttributeValue<String>) -> Self
This attribute indicates the time and date of the change and must be a valid date string with an optional time. If the value cannot be parsed as a date with an optional time string, the element does not have an associated time stamp. For the format of the string without a time, see Date strings. The format of the string if it includes both date and time is covered in Local date and time strings.
Source§impl DelBuilder
impl DelBuilder
pub fn on_blur( self, f: impl 'static + FnMut(FocusEvent, HtmlModElement), ) -> Self
pub fn on_click( self, f: impl 'static + FnMut(MouseEvent, HtmlModElement), ) -> Self
pub fn on_change(self, f: impl 'static + FnMut(Event, HtmlModElement)) -> Self
pub fn on_dblclick( self, f: impl 'static + FnMut(MouseEvent, HtmlModElement), ) -> Self
pub fn on_focusout( self, f: impl 'static + FnMut(FocusEvent, HtmlModElement), ) -> Self
pub fn on_input( self, f: impl 'static + FnMut(InputEvent, HtmlModElement), ) -> Self
pub fn on_keydown( self, f: impl 'static + FnMut(KeyboardEvent, HtmlModElement), ) -> Self
pub fn on_keyup( self, f: impl 'static + FnMut(KeyboardEvent, HtmlModElement), ) -> Self
pub fn effect(self, f: impl Effect<HtmlModElement>) -> Self
Trait Implementations§
Source§impl Builder for DelBuilder
impl Builder for DelBuilder
Source§impl DomElement for DelBuilder
impl DomElement for DelBuilder
type Target = HtmlModElement
fn dom_element(&self) -> Self::Target
Source§impl From<DelBuilder> for Element
impl From<DelBuilder> for Element
Source§fn from(builder: DelBuilder) -> Self
fn from(builder: DelBuilder) -> Self
Converts to this type from the input type.
Source§impl From<DelBuilder> for ElementBuilder
impl From<DelBuilder> for ElementBuilder
Source§fn from(builder: DelBuilder) -> Self
fn from(builder: DelBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DelBuilder
impl !RefUnwindSafe for DelBuilder
impl !Send for DelBuilder
impl !Sync for DelBuilder
impl Unpin for DelBuilder
impl !UnwindSafe for DelBuilder
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