pub struct Track<'life> {Show 22 fields
pub accesskey: Option<&'life str>,
pub autocapitalize: Option<&'life str>,
pub autofocus: Option<bool>,
pub class: Option<&'life str>,
pub contenteditable: Option<&'life str>,
pub contextmenu: Option<&'life str>,
pub data: Option<BTreeMap<&'life str, &'life str>>,
pub default: Option<&'life str>,
pub dir: Option<&'life str>,
pub draggable: Option<&'life str>,
pub enterkeyhint: Option<&'life str>,
pub exportparts: Option<&'life str>,
pub hidden: Option<bool>,
pub id: Option<&'life str>,
pub inert: Option<&'life str>,
pub inputmode: Option<&'life str>,
pub is: Option<&'life str>,
pub kind: Option<&'life str>,
pub label: Option<&'life str>,
pub src: Option<&'life str>,
pub srclang: Option<&'life str>,
pub extra: BTreeMap<&'life str, &'life str>,
}
Expand description
The <track>
HTML element is used as a child of the media elements, <audio>
and <video>
. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format (.vtt
files) — Web Video Text Tracks.
More information: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
Fields§
§accesskey: Option<&'life str>
Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.
autocapitalize: Option<&'life str>
Controls whether and how text input is automatically capitalized as it is entered/edited by the user. It can have the following values:
off
ornone
, no autocapitalization is applied (all letters default to lowercase)on
orsentences
, the first letter of each sentence defaults to a capital letter; all other letters default to lowercasewords
, the first letter of each word defaults to a capital letter; all other letters default to lowercasecharacters
, all letters should default to uppercase
autofocus: Option<bool>
Indicates that an element is to be focused on page load, or as soon as the <dialog>
it is part of is displayed. This attribute is a boolean, initially false.
class: Option<&'life str>
A space-separated list of the classes of the element. Classes allow CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName()
.
contenteditable: Option<&'life str>
An enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:
true
or the empty string, which indicates that the element must be editable;false
, which indicates that the element must not be editable.
data: Option<BTreeMap<&'life str, &'life str>>
Forms a class of attributes, called custom data attributes, that allow proprietary information to be exchanged between the HTML and its DOM representation that may be used by scripts. All such custom data are available via the HTMLElement
interface of the element the attribute is set on. The HTMLElement.dataset
property gives access to them.
default: Option<&'life str>
This attribute indicates that the track should be enabled unless the user's preferences indicate that another track is more appropriate. This may only be used on one track
element per media element.
dir: Option<&'life str>
An enumerated attribute indicating the directionality of the element's text. It can have the following values:
ltr
, which means left to right and is to be used for languages that are written from the left to the right (like English);rtl
, which means right to left and is to be used for languages that are written from the right to the left (like Arabic);auto
, which lets the user agent decide. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then it applies that directionality to the whole element.
draggable: Option<&'life str>
An enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:
true
, which indicates that the element may be draggedfalse
, which indicates that the element may not be dragged.
enterkeyhint: Option<&'life str>
Hints what action label (or icon) to present for the enter key on virtual keyboards.
exportparts: Option<&'life str>
Used to transitively export shadow parts from a nested shadow tree into a containing light tree.
An enumerated attribute indicating that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. The browser won't render such elements. This attribute must not be used to hide content that could legitimately be shown.
id: Option<&'life str>
Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).
inert: Option<&'life str>
A boolean value that makes the browser disregard user input events for the element. Useful when click events are present.
inputmode: Option<&'life str>
Provides a hint to browsers about the type of virtual keyboard configuration to use when editing this element or its contents. Used primarily on <input>
elements, but is usable on any element while in contenteditable
mode.
is: Option<&'life str>
Allows you to specify that a standard HTML element should behave like a registered custom built-in element (see Using custom elements for more details).
kind: Option<&'life str>
How the text track is meant to be used. If omitted the default kind is subtitles
. If the attribute contains an invalid value, it will use metadata
(Versions of Chrome earlier than 52 treated an invalid value as subtitles
). The following keywords are allowed:
subtitles
- Subtitles provide translation of content that cannot be understood by the viewer. For example speech or text that is not English in an English language film.
- Subtitles may contain additional content, usually extra background information. For example the text at the beginning of the Star Wars films, or the date, time, and location of a scene.
captions
- Closed captions provide a transcription and possibly a translation of audio.
- It may include important non-verbal information such as music cues or sound effects. It may indicate the cue's source (e.g. music, text, character).
- Suitable for users who are deaf or when the sound is muted.
descriptions
- Textual description of the video content.
- Suitable for users who are blind or where the video cannot be seen.
chapters
- Chapter titles are intended to be used when the user is navigating the media resource.
metadata
- Tracks used by scripts. Not visible to the user.
label: Option<&'life str>
A user-readable title of the text track which is used by the browser when listing available text tracks.
src: Option<&'life str>
Address of the track (.vtt
file). Must be a valid URL. This attribute must be specified and its URL value must have the same origin as the document — unless the <audio>
or <video>
parent element of the track
element has a crossorigin
attribute.
srclang: Option<&'life str>
Language of the track text data. It must be a valid BCP 47 language tag. If the kind
attribute is set to subtitles
, then srclang
must be defined.
extra: BTreeMap<&'life str, &'life str>
The extra attributes of the element. This is a map of attribute names to their values. The attribute names are in lowercase.
Trait Implementations§
source§impl<'life> Ord for Track<'life>
impl<'life> Ord for Track<'life>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl<'life> PartialEq<Track<'life>> for Track<'life>
impl<'life> PartialEq<Track<'life>> for Track<'life>
source§impl<'life> PartialOrd<Track<'life>> for Track<'life>
impl<'life> PartialOrd<Track<'life>> for Track<'life>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more