[][src]Struct arwa::html::HtmlTextAreaElement

pub struct HtmlTextAreaElement { /* fields omitted */ }

Methods

impl HtmlTextAreaElement[src]

pub fn name(&self) -> String[src]

pub fn set_name(&self, name: &str)[src]

pub fn value(&self) -> String[src]

pub fn set_value(&self, value: &str)[src]

pub fn autofocus(&self) -> bool[src]

pub fn set_autofocus(&self, autofocus: bool)[src]

pub fn disabled(&self) -> bool[src]

pub fn set_disabled(&self, disabled: bool)[src]

pub fn placeholder(&self) -> String[src]

pub fn set_placeholder(&self, placeholder: &str)[src]

pub fn read_only(&self) -> bool[src]

pub fn set_read_only(&self, read_only: bool)[src]

pub fn required(&self) -> bool[src]

pub fn set_required(&self, required: bool)[src]

pub fn text_length(&self) -> u32[src]

pub fn cols(&self) -> u32[src]

pub fn set_cols(&self, cols: u32)[src]

pub fn rows(&self) -> u32[src]

pub fn set_rows(&self, rows: u32)[src]

pub fn will_validate(&self) -> bool[src]

pub fn check_validity(&self) -> bool[src]

pub fn report_validity(&self) -> bool[src]

pub fn set_custom_validity(&self, error: &str)[src]

pub fn validity(&self) -> ValidityState[src]

pub fn select(&self)[src]

pub fn default_value(&self) -> String[src]

pub fn set_default_value(&self, default_value: &str)[src]

pub fn autocomplete(&self) -> AutoComplete[src]

pub fn set_autocomplete(&self, autocomplete: AutoComplete)[src]

pub fn wrap(&self) -> TextWrap[src]

pub fn set_wrap(&self, wrap: TextWrap)[src]

pub fn max_length(&self) -> u32[src]

pub fn set_max_length(&self, max_length: u32)[src]

pub fn min_length(&self) -> u32[src]

pub fn set_min_length(&self, min_length: u32)[src]

pub fn form(&self) -> Option<HtmlFormElement>[src]

pub fn validation_message(&self) -> String[src]

pub fn labels(&self) -> Labels[src]

pub fn selection_start(&self) -> Option<u32>[src]

pub fn selection_end(&self) -> Option<u32>[src]

pub fn selection_direction(&self) -> Option<SelectionDirection>[src]

pub fn set_text_range<R>(
    &self,
    range: R,
    text: &str
) -> Result<(), SetTextRangeError> where
    R: RangeBounds<u32>, 
[src]

pub fn set_selection_range<R>(
    &self,
    range: R,
    direction: SelectionDirection
) -> Result<(), InvalidStateError> where
    R: RangeBounds<u32>, 
[src]

Trait Implementations

impl AsRef<Element> for HtmlTextAreaElement[src]

impl AsRef<EventTarget> for HtmlTextAreaElement[src]

impl AsRef<HtmlElement> for HtmlTextAreaElement[src]

impl AsRef<HtmlTextAreaElement> for HtmlTextAreaElement[src]

impl AsRef<Node> for HtmlTextAreaElement[src]

impl Clone for HtmlTextAreaElement[src]

impl Element for HtmlTextAreaElement[src]

impl From<HtmlTextAreaElement> for HtmlTextAreaElement[src]

impl From<HtmlTextAreaElement> for GenericHtmlElement[src]

impl From<HtmlTextAreaElement> for GenericElement[src]

impl From<HtmlTextAreaElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlTextAreaElement[src]

impl HtmlElement for HtmlTextAreaElement[src]

impl Node for HtmlTextAreaElement[src]

impl TryFrom<GenericElement> for HtmlTextAreaElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlTextAreaElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlTextAreaElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

impl Write for HtmlTextAreaElement[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.