pub struct TrackBuilder(_);

Implementations§

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.

How the text track is meant to be used. If omitted the default kind is subtitles. If the attribute is not present, it will use the subtitles. If the attribute contains an invalid value, it will use metadata. The following keywords are allowed: Subtitles provide translation of content that cannot be understood by the viewer. For example dialogue 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.

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.

Textual description of the video content.

  • descriptions: 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: A user-readable title of the text track which is used by the browser when listing available text tracks.

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.

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.

Trait Implementations§

Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.