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