Struct TextareaBuilder

Source
pub struct TextareaBuilder(/* private fields */);

Implementations§

Source§

impl TextareaBuilder

Source

pub fn id(self, value: impl AttributeValue<String>) -> Self

Source

pub fn class(self, value: impl AttributeValue<String>) -> Self

Source

pub fn autocomplete(self, value: impl AttributeValue<String>) -> Self

This attribute indicates whether the value of the control can be automatically completed by the browser. Possible values are:

  • off: The user must explicitly enter a value into this field for every use, or the document provides its own auto-completion method; the browser does not automatically complete the entry.
  • on: The browser can automatically complete the value based on values that the user has entered during previous uses.

If the autocomplete attribute is not specified on a <textarea> element, then the browser uses the autocomplete attribute value of the <textarea> element’s form owner. The form owner is either the <form> element that this <textarea> element is a descendant of or the form element whose id is specified by the form attribute of the input element. For more information, see the autocomplete attribute in <form>.

Source

pub fn autofocus(self, value: impl AttributeValue<bool>) -> Self

Lets you specify that a form control should have input focus when the page loads. Only one form-associated element in a document can have this attribute specified.

Source

pub fn cols(self, value: impl AttributeValue<u32>) -> Self

The visible width of the text control, in average character widths. If it is not specified, the default value is 20.

Source

pub fn disabled(self, value: impl AttributeValue<bool>) -> Self

Indicates that the user cannot interact with the control. If this attribute is not specified, the control inherits its setting from the containing element, for example <fieldset>; if there is no containing element when the disabled attribute is set, the control is enabled.

Source

pub fn form(self, value: impl AttributeValue<String>) -> Self

The form element that the <textarea> element is associated with (its “form owner”). The value of the attribute must be the id of a form element in the same document. If this attribute is not specified, the <textarea> element must be a descendant of a form element. This attribute enables you to place <textarea> elements anywhere within a document, not just as descendants of form elements.

Source

pub fn maxlength(self, value: impl AttributeValue<u32>) -> Self

The maximum number of characters (UTF-16 code units) that the user can enter. If this value isn’t specified, the user can enter an unlimited number of characters.

Source

pub fn minlength(self, value: impl AttributeValue<u32>) -> Self

The minimum number of characters (UTF-16 code units) required that the user should enter.

Source

pub fn name(self, value: impl AttributeValue<String>) -> Self

The name of the control.

Source

pub fn placeholder(self, value: impl AttributeValue<String>) -> Self

A hint to the user of what can be entered in the control. Carriage returns or line-feeds within the placeholder text must be treated as line breaks when rendering the hint.

Note: Placeholders should only be used to show an example of the type of data that should be entered into a form; they are not a substitute for a proper <label> element tied to the input.

Source

pub fn readonly(self, value: impl AttributeValue<bool>) -> Self

Indicates that the user cannot modify the value of the control. Unlike the disabled attribute, the readonly attribute does not prevent the user from clicking or selecting in the control. The value of a read-only control is still submitted with the form.

Source

pub fn required(self, value: impl AttributeValue<String>) -> Self

This attribute specifies that the user must fill in a value before submitting a form.

Source

pub fn rows(self, value: impl AttributeValue<String>) -> Self

The number of visible text lines for the control.

Source

pub fn spellcheck(self, value: impl AttributeValue<String>) -> Self

Specifies whether the <textarea> is subject to spell checking by the underlying browser/OS. the value can be:

  • true: Indicates that the element needs to have its spelling and grammar checked.
  • default : Indicates that the element is to act according to a default behavior, possibly based on the parent element’s own spellcheck value.
  • false : Indicates that the element should not be spell checked.
Source

pub fn wrap(self, value: impl AttributeValue<String>) -> Self

Indicates how the control wraps text. Possible values are:

  • hard: The browser automatically inserts line breaks (CR+LF) so that each line has no more than the width of the control; the cols attribute must also be specified for this to take effect.
  • soft: The browser ensures that all line breaks in the value consist of a CR+LF pair, but does not insert any additional line breaks.

If this attribute is not specified, soft is its default value.

Source§

impl TextareaBuilder

Source

pub fn on_blur( self, f: impl 'static + FnMut(FocusEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_click( self, f: impl 'static + FnMut(MouseEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_change( self, f: impl 'static + FnMut(Event, HtmlTextAreaElement), ) -> Self

Source

pub fn on_dblclick( self, f: impl 'static + FnMut(MouseEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_focusout( self, f: impl 'static + FnMut(FocusEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_input( self, f: impl 'static + FnMut(InputEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_keydown( self, f: impl 'static + FnMut(KeyboardEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn on_keyup( self, f: impl 'static + FnMut(KeyboardEvent, HtmlTextAreaElement), ) -> Self

Source

pub fn effect(self, f: impl Effect<HtmlTextAreaElement>) -> Self

Source§

impl TextareaBuilder

Source

pub fn text(self, child: impl Text) -> Self

Source

pub fn child<Child>(self, c: Child) -> Self
where Child: Into<Element>,

Trait Implementations§

Source§

impl Builder for TextareaBuilder

Source§

impl DomElement for TextareaBuilder

Source§

impl From<TextareaBuilder> for Element

Source§

fn from(builder: TextareaBuilder) -> Self

Converts to this type from the input type.
Source§

impl From<TextareaBuilder> for ElementBuilder

Source§

fn from(builder: TextareaBuilder) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.