pub struct textarea {
pub attributes: <textarea as TypedElement>::Attributes,
pub other_attributes: Vec<(String, Option<String>)>,
}
Available on crate feature
typed
only.Fields§
§attributes: <textarea as TypedElement>::Attributes
§other_attributes: Vec<(String, Option<String>)>
Trait Implementations§
Source§impl TypedElement for textarea
impl TypedElement for textarea
Source§type Attributes = TextareaAttributes
type Attributes = TextareaAttributes
The attributes of the element.
Source§fn from_attributes(
attributes: <textarea as TypedElement>::Attributes,
other_attributes: Vec<(String, Option<String>)>,
) -> textarea
fn from_attributes( attributes: <textarea as TypedElement>::Attributes, other_attributes: Vec<(String, Option<String>)>, ) -> textarea
Create an element from its attributes.
Auto Trait Implementations§
impl Freeze for textarea
impl RefUnwindSafe for textarea
impl Send for textarea
impl Sync for textarea
impl Unpin for textarea
impl UnwindSafe for textarea
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