Struct html_sys::HTMLTextAreaElement
source · pub struct HTMLTextAreaElement { /* private fields */ }
Implementations§
source§impl HTMLTextAreaElement
impl HTMLTextAreaElement
pub fn autocomplete(&self) -> String
pub fn set_autocomplete(&mut self, value: String)
pub fn autofocus(&self) -> bool
pub fn set_autofocus(&mut self, value: bool)
pub fn cols(&self) -> u64
pub fn set_cols(&mut self, value: u64)
pub fn dirName(&self) -> String
pub fn set_dirName(&mut self, value: String)
pub fn disabled(&self) -> bool
pub fn set_disabled(&mut self, value: bool)
pub fn inputMode(&self) -> String
pub fn set_inputMode(&mut self, value: String)
pub fn maxLength(&self) -> u64
pub fn set_maxLength(&mut self, value: u64)
pub fn minLength(&self) -> u64
pub fn set_minLength(&mut self, value: u64)
pub fn name(&self) -> String
pub fn set_name(&mut self, value: String)
pub fn placeholder(&self) -> String
pub fn set_placeholder(&mut self, value: String)
pub fn readOnly(&self) -> bool
pub fn set_readOnly(&mut self, value: bool)
pub fn required(&self) -> bool
pub fn set_required(&mut self, value: bool)
pub fn rows(&self) -> u64
pub fn set_rows(&mut self, value: u64)
pub fn wrap(&self) -> String
pub fn set_wrap(&mut self, value: String)
pub fn defaultValue(&self) -> String
pub fn set_defaultValue(&mut self, value: String)
pub fn value(&self) -> String
pub fn set_value(&mut self, value: String)
pub fn selectionStart(&self) -> u64
pub fn set_selectionStart(&mut self, value: u64)
pub fn selectionEnd(&self) -> u64
pub fn set_selectionEnd(&mut self, value: u64)
pub fn selectionDirection(&self) -> String
pub fn set_selectionDirection(&mut self, value: String)
Methods from Deref<Target = HTMLElement>§
Methods from Deref<Target = Element>§
Methods from Deref<Target = Node>§
Trait Implementations§
source§impl Clone for HTMLTextAreaElement
impl Clone for HTMLTextAreaElement
source§fn clone(&self) -> HTMLTextAreaElement
fn clone(&self) -> HTMLTextAreaElement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HTMLTextAreaElement
impl Debug for HTMLTextAreaElement
source§impl Default for HTMLTextAreaElement
impl Default for HTMLTextAreaElement
source§fn default() -> HTMLTextAreaElement
fn default() -> HTMLTextAreaElement
Returns the “default value” for a type. Read more
source§impl Deref for HTMLTextAreaElement
impl Deref for HTMLTextAreaElement
source§impl PartialEq<HTMLTextAreaElement> for HTMLTextAreaElement
impl PartialEq<HTMLTextAreaElement> for HTMLTextAreaElement
source§fn eq(&self, other: &HTMLTextAreaElement) -> bool
fn eq(&self, other: &HTMLTextAreaElement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.