pub struct HTMLStopElementProps {Show 32 fields
pub children: Vec<Node>,
pub id: String,
pub key: String,
pub class: String,
pub style: String,
pub title: Option<String>,
pub width: Option<String>,
pub height: Option<String>,
pub draggable: bool,
pub hidden: bool,
pub accesskey: String,
pub contenteditable: bool,
pub dir: String,
pub tabindex: Option<i32>,
pub spellcheck: bool,
pub lang: String,
pub translate: bool,
pub autocapitalize: String,
pub role: String,
pub aria_current: String,
pub aria_label: Option<String>,
pub aria_labelledby: Option<String>,
pub aria_describedby: Option<String>,
pub aria_expanded: bool,
pub aria_selected: bool,
pub aria_checked: String,
pub aria_hidden: bool,
pub aria_haspopup: String,
pub aria_role: String,
pub offset: String,
pub stop_color: String,
pub stop_opacity: String,
}Fields§
§children: Vec<Node>The child nodes of the element
id: StringThe id attribute specifies a unique id for an HTML element
key: StringA unique key to identify the element
class: StringThe class attribute specifies one or more class names for an HTML element
style: StringThe style attribute specifies an inline CSS style for an element
title: Option<String>The title attribute specifies extra information about an element (displayed as a tooltip)
width: Option<String>The width attribute specifies the width of the image
height: Option<String>The height attribute specifies the height of the image
draggable: boolSpecifies whether an element is draggable or not
Specifies visibility of an element (hidden or visible)
accesskey: StringSpecifies a shortcut key to activate/focus an element
contenteditable: boolSpecifies whether the content of an element is editable or not
dir: StringSpecifies the text direction for the content in an element
tabindex: Option<i32>Specifies the tabbing order of an element (when the tab button is used)
spellcheck: boolSpecifies whether the element is to have its spelling and grammar checked
lang: StringSpecifies the language of the element’s content
translate: boolSpecifies whether an element is translateable or not
autocapitalize: StringControls whether and how text input is automatically capitalized
role: StringSpecifies an inline CSS style for an element
aria_current: StringIdentifies the current element within a set
aria_label: Option<String>Defines a string value that labels the current element
aria_labelledby: Option<String>Identifies the element that labels the current element
aria_describedby: Option<String>Identifies the element that describes the current element
aria_expanded: boolIndicates whether an element is expanded or collapsed
aria_selected: boolIndicates the element that represents the current item within a container or set
aria_checked: StringIndicates whether the element is checked, unchecked, or represents mixed mode
Indicates whether an element and its subtree are hidden
aria_haspopup: StringIndicates the availability and type of interactive popup element
aria_role: StringDefines an element’s role
offset: String§stop_color: String§stop_opacity: String