Struct silkenweb::elements::html::Video

source ·
pub struct Video<Dom: Dom = DefaultDom, Mutability = Mut>(/* private fields */);
Expand description

The HTML video element

The HTML Video element (<video>) embeds a media player which supports video playback into the document.

Implementations§

source§

impl<Dom: Dom> Video<Dom>

source

pub fn new() -> Self

Construct with no attributes set.

source

pub fn freeze(self) -> Video<Dom, Const>

Freeze self, making it immutable.

source

pub fn autoplay<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The autoplay attribute

If specified, the video automatically begins to play back as soon as it can do so without stopping to finish loading the data.

Note: Sites that automatically play audio (or videos with an audio track) can be an unpleasant experience for users, so should be avoided when possible. If you must offer autoplay functionality, you should make it opt-in (requiring a user to specifically enable it). However, this can be useful when creating media elements whose source will be set at a later time, under user control. See our autoplay guide for additional information about how to properly use autoplay.

To disable video autoplay, autoplay=“false” will not work; the video will autoplay if the attribute is there in the <video> tag at all. To remove autoplay, the attribute needs to be removed altogether.

source

pub fn buffered<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The buffered attribute

An attribute you can read to determine the time ranges of the buffered media. This attribute contains a TimeRanges object.

source

pub fn controls<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The controls attribute

If this attribute is present, the browser will offer controls to allow the user to control video playback, including volume, seeking, and pause/resume playback.

source

pub fn crossorigin<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The crossorigin attribute

This enumerated attribute indicates whether to use CORS to fetch the related image. CORS-enabled resources can be reused in the <canvas> element without being tainted. The allowed values are:

  • anonymous: Sends a cross-origin request without a credential. In other words, it sends the Origin: HTTP header without a cookie, X.509 certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (by not setting the Access-Control-Allow-Origin: HTTP header), the image will be tainted, and its usage restricted.
  • use-credentials: Sends a cross-origin request with a credential. In other words, it sends the Origin: HTTP header with a cookie, a certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (through Access-Control-Allow-Credentials: HTTP header), the image will be tainted and its usage restricted.

When not present, the resource is fetched without a CORS request (i.e. without sending the Origin: HTTP header), preventing its non-tainted used in <canvas> elements. If invalid, it is handled as if the enumerated keyword anonymous was used.

source

pub fn current_time<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The currentTime attribute

Reading currentTime returns a double-precision floating-point value indicating the current playback position of the media specified in seconds. If the media has not started playing yet, the time offset at which it will begin is returned. Setting currentTime sets the current playback position to the given time and seeks the media to that position if the media is currently loaded.

If the media is being streamed, it’s possible that the user agent may not be able to obtain some parts of the resource if that data has expired from the media buffer. Other media may have a media timeline that doesn’t start at 0 seconds, so setting currentTime to a time before that would fail. The getStartDate() method can be used to determine the beginning point of the media timeline’s reference frame.

source

pub fn height<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The height attribute

The height of the video’s display area, in CSS pixels (absolute values only; no percentages.)

source

pub fn loop<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The loop attribute

If specified, the browser will automatically seek back to the start upon reaching the end of the video.

source

pub fn muted<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The muted attribute

Indicates the default setting of the audio contained in the video. If set, the audio will be initially silenced. Its default value is false, meaning that the audio will be played when the video is played.

source

pub fn playsinline<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<bool>,

The playsinline attribute

Indicating that the video is to be played “inline”, that is within the element’s playback area. Note that the absence of this attribute does not imply that the video will always be played in fullscreen.

source

pub fn poster<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The poster attribute

A URL for an image to be shown while the video is downloading. If this attribute isn’t specified, nothing is displayed until the first frame is available, then the first frame is shown as the poster frame.

source

pub fn preload<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The preload attribute

This enumerated attribute is intended to provide a hint to the browser about what the author thinks will lead to the best user experience with regards to what content is loaded before the video is played. It may have one of the following values:

  • none: Indicates that the video should not be preloaded.
  • metadata: Indicates that only video metadata (e.g. length) is fetched.
  • auto: Indicates that the whole video file can be downloaded, even if the user is not expected to use it.
  • empty string: Synonym of the auto value.

The default value is different for each browser. The spec advises it to be set to metadata.

Note:

The autoplay attribute has precedence over preload. If autoplay is specified, the browser would obviously need to start downloading the video for playback. > The specification does not force the browser to follow the value of this attribute; it is a mere hint.

source

pub fn src<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The src attribute

The URL of the video to embed. This is optional; you may instead use the <source> element within the video block to specify the video to embed.

source

pub fn width<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The width attribute

The width of the video’s display area, in CSS pixels (absolute values only; no percentages).

source

pub fn on_enterpictureinpicture( self, f: impl FnMut(Event, HtmlVideoElement) + 'static ) -> Self

source

pub fn on_leavepictureinpicture( self, f: impl FnMut(Event, HtmlVideoElement) + 'static ) -> Self

source§

impl<InitParam, Dom> Video<Template<InitParam, Dom>>
where Dom: InstantiableDom, InitParam: 'static,

source

pub fn on_instantiate( self, f: impl 'static + Fn(Video<Dom>, &InitParam) -> Video<Dom> ) -> Self

source§

impl<InitParam, Dom> Video<Template<InitParam, Dom>, Const>
where Dom: InstantiableDom, InitParam: 'static,

source

pub fn instantiate(&self, param: &InitParam) -> Video<Dom>

Trait Implementations§

source§

impl<Dom: Dom> AriaElement for Video<Dom>

source§

fn role<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA role attribute
source§

fn aria_activedescendant<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-activedescendant Attribute Read more
source§

fn aria_atomic<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-atomic Attribute Read more
source§

fn aria_autocomplete<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-autocomplete Attribute Read more
source§

fn aria_braillelabel<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-braillelabel Attribute Read more
source§

fn aria_brailleroledescription<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

source§

fn aria_busy<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-busy Attribute Read more
source§

fn aria_checked<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-checked Attribute Read more
source§

fn aria_colcount<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<i64>,

The ARIA aria-colcount Attribute Read more
source§

fn aria_colindex<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<u64>,

The ARIA aria-colindex Attribute Read more
source§

fn aria_colindextext<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-colindextext Attribute Read more
source§

fn aria_colspan<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<u64>,

The ARIA aria-colspan Attribute Read more
source§

fn aria_controls<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-controls Attribute Read more
source§

fn aria_current<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-current Attribute Read more
source§

fn aria_describedby<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-describedby Attribute Read more
source§

fn aria_description<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-description Attribute Read more
source§

fn aria_details<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-details Attribute Read more
source§

fn aria_disabled<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-disabled Attribute Read more
source§

fn aria_errormessage<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-errormessage Attribute Read more
source§

fn aria_expanded<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-expanded Attribute Read more
source§

fn aria_flowto<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-flowto Attribute Read more
source§

fn aria_haspopup<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-haspopup Attribute Read more
source§

fn aria_hidden<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-hidden Attribute Read more
source§

fn aria_invalid<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-invalid Attribute Read more
source§

fn aria_keyshortcuts<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-keyshortcuts Attribute Read more
source§

fn aria_label<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-label Attribute Read more
source§

fn aria_labelledby<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-labelledby Attribute Read more
source§

fn aria_level<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<u64>,

The ARIA aria-level Attribute Read more
source§

fn aria_live<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-live Attribute Read more
source§

fn aria_modal<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-modal Attribute Read more
source§

fn aria_multiline<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-multiline Attribute Read more
source§

fn aria_multiselectable<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-multiselectable Attribute Read more
source§

fn aria_orientation<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-orientation Attribute Read more
source§

fn aria_owns<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-owns Attribute Read more
source§

fn aria_placeholder<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-placeholder Attribute Read more
source§

fn aria_posinset<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<u64>,

The ARIA aria-posinset Attribute Read more
source§

fn aria_pressed<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-pressed Attribute Read more
source§

fn aria_readonly<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-readonly Attribute Read more
source§

fn aria_relevant<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-relevant Attribute Read more
source§

fn aria_required<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-required Attribute Read more
source§

fn aria_roledescription<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-roledescription Attribute Read more
source§

fn aria_rowcount<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<i64>,

The ARIA aria-rowcount Attribute Read more
source§

fn aria_rowindex<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<u64>,

The ARIA aria-rowindex Attribute Read more
source§

fn aria_rowindextext<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-rowindextext Attribute Read more
source§

fn aria_rowspan<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<u64>,

The ARIA aria-rowspan Attribute Read more
source§

fn aria_selected<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-selected Attribute Read more
source§

fn aria_setsize<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<i64>,

The ARIA aria-setsize Attribute Read more
source§

fn aria_sort<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The ARIA aria-sort Attribute Read more
source§

fn aria_valuemax<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<f64>,

The ARIA aria-valuemax Attribute Read more
source§

fn aria_valuemin<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<f64>,

The ARIA aria-valuemin Attribute Read more
source§

fn aria_valuenow<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<f64>,

The ARIA aria-valuenow Attribute Read more
source§

fn aria_valuetext<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The ARIA aria-valuetext Attribute Read more
source§

impl<Dom: Dom> Default for Video<Dom>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<Dom> Display for Video<Dom, Const>
where Dom: Dom,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Dom: Dom> Element for Video<Dom>

§

type Dom = Dom

§

type DomElement = HtmlVideoElement

source§

fn class<'a, T>(self, class: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: 'a + AsRef<str>,

Add a class to the element. Read more
source§

fn classes<'a, T, Iter>( self, classes: impl RefSignalOrValue<'a, Item = Iter> ) -> Self
where T: 'a + AsRef<str>, Iter: 'a + IntoIterator<Item = T>,

Set the classes on an element Read more
source§

fn attribute<'a>( self, name: &str, value: impl RefSignalOrValue<'a, Item = impl Attribute> ) -> Self

Set an attribute Read more
source§

fn style_property<'a>( self, name: impl Into<String>, value: impl RefSignalOrValue<'a, Item = impl AsRef<str> + 'a> ) -> Self

Set an inline style property Read more
source§

fn effect(self, f: impl FnOnce(&Self::DomElement) + 'static) -> Self

Apply an effect after the next render. Read more
source§

fn effect_signal<T: 'static>( self, sig: impl Signal<Item = T> + 'static, f: impl Fn(&Self::DomElement, T) + Clone + 'static ) -> Self

Apply an effect after the next render each time a signal yields a new value.
source§

fn map_element(self, f: impl FnOnce(&Self::DomElement) + 'static) -> Self

Map a function over the element.
source§

fn map_element_signal<T: 'static>( self, sig: impl Signal<Item = T> + 'static, f: impl Fn(&Self::DomElement, T) + Clone + 'static ) -> Self

Map a function over the element each time a signal changes.
source§

fn handle(&self) -> ElementHandle<Self::Dom, Self::DomElement>

Get a handle to the element. Read more
source§

fn spawn_future(self, future: impl Future<Output = ()> + 'static) -> Self

Spawn a future on the element. Read more
source§

fn on(self, name: &'static str, f: impl FnMut(JsValue) + 'static) -> Self

Register an event handler. Read more
source§

impl<Dom: Dom> ElementEvents for Video<Dom>

source§

fn on_animationcancel( self, f: impl FnMut(AnimationEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_animationend( self, f: impl FnMut(AnimationEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_animationiteration( self, f: impl FnMut(AnimationEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_animationstart( self, f: impl FnMut(AnimationEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_auxclick( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_blur(self, f: impl FnMut(FocusEvent, Self::DomElement) + 'static) -> Self

source§

fn on_click(self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static) -> Self

source§

fn on_compositionend( self, f: impl FnMut(CompositionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_compositionstart( self, f: impl FnMut(CompositionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_compositionupdate( self, f: impl FnMut(CompositionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_contextmenu( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_dblclick( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_focusin( self, f: impl FnMut(FocusEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_focusout( self, f: impl FnMut(FocusEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_focus(self, f: impl FnMut(FocusEvent, Self::DomElement) + 'static) -> Self

source§

fn on_fullscreenchange( self, f: impl FnMut(Event, Self::DomElement) + 'static ) -> Self

source§

fn on_fullscreenerror( self, f: impl FnMut(Event, Self::DomElement) + 'static ) -> Self

source§

fn on_gotpointercapture( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_keydown( self, f: impl FnMut(KeyboardEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_keyup( self, f: impl FnMut(KeyboardEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_lostpointercapture( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mousedown( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mouseenter( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mouseleave( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mousemove( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mouseout( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mouseover( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_mouseup( self, f: impl FnMut(MouseEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointercancel( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerdown( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerenter( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerleave( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointermove( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerout( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerover( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerrawupdate( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_pointerup( self, f: impl FnMut(PointerEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_transitioncancel( self, f: impl FnMut(TransitionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_transitionend( self, f: impl FnMut(TransitionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_transitionrun( self, f: impl FnMut(TransitionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_transitionstart( self, f: impl FnMut(TransitionEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_scroll(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_scrollend(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_securitypolicyviolation( self, f: impl FnMut(SecurityPolicyViolationEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_touchcancel( self, f: impl FnMut(TouchEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_touchend( self, f: impl FnMut(TouchEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_touchmove( self, f: impl FnMut(TouchEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_touchstart( self, f: impl FnMut(TouchEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_wheel(self, f: impl FnMut(WheelEvent, Self::DomElement) + 'static) -> Self

source§

fn on_copy(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_cut(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_paste(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

impl<Dom: Dom> From<Video<Dom>> for GenericElement<Dom, Const>

source§

fn from(elem: Video<Dom, Mut>) -> Self

Converts to this type from the input type.
source§

impl<Dom: Dom, Mutability> From<Video<Dom, Mutability>> for GenericElement<Dom, Mutability>

source§

fn from(elem: Video<Dom, Mutability>) -> Self

Converts to this type from the input type.
source§

impl<Dom: Dom, Mutability> From<Video<Dom, Mutability>> for Node<Dom>

source§

fn from(elem: Video<Dom, Mutability>) -> Self

Converts to this type from the input type.
source§

impl<Dom: Dom> HtmlElement for Video<Dom>

source§

fn accesskey<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global accesskey Attribute Read more
source§

fn autocapitalize<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The Global autocapitalize Attribute Read more
source§

fn autofocus<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The Global autofocus Attribute Read more
source§

fn contenteditable<'a, T>( self, value: impl RefSignalOrValue<'a, Item = T> ) -> Self
where T: AsAttribute<String>,

The Global contenteditable Attribute Read more
source§

fn contextmenu<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global contextmenu Attribute Read more
source§

fn dir<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global dir Attribute Read more
source§

fn draggable<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global draggable Attribute Read more
source§

fn enterkeyhint<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global enterkeyhint Attribute Read more
source§

fn exportparts<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global exportparts Attribute Read more
source§

fn hidden<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<bool>,

The Global hidden Attribute Read more
source§

fn id<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global id Attribute Read more
source§

fn inputmode<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global inputmode Attribute Read more
source§

fn is<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global is Attribute Read more
source§

fn itemid<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global itemid Attribute Read more
source§

fn itemprop<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global itemprop Attribute Read more
source§

fn itemref<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global itemref Attribute Read more
source§

fn itemscope<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global itemscope Attribute Read more
source§

fn itemtype<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global itemtype Attribute Read more
source§

fn lang<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global lang Attribute Read more
source§

fn nonce<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global nonce Attribute Read more
source§

fn part<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global part Attribute Read more
source§

fn slot<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global slot Attribute Read more
source§

fn spellcheck<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global spellcheck Attribute Read more
source§

fn style<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global style Attribute Read more
source§

fn tabindex<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<i32>,

The Global tabindex Attribute Read more
source§

fn title<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global title Attribute Read more
source§

fn translate<'a, T>(self, value: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: AsAttribute<String>,

The Global translate Attribute Read more
source§

impl<Dom: Dom> HtmlElementEvents for Video<Dom>

source§

fn on_beforeinput( self, f: impl FnMut(InputEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_change(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_error(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

fn on_input(self, f: impl FnMut(InputEvent, Self::DomElement) + 'static) -> Self

source§

fn on_drag(self, f: impl FnMut(DragEvent, Self::DomElement) + 'static) -> Self

source§

fn on_dragend( self, f: impl FnMut(DragEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_dragenter( self, f: impl FnMut(DragEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_dragleave( self, f: impl FnMut(DragEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_dragover( self, f: impl FnMut(DragEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_dragstart( self, f: impl FnMut(DragEvent, Self::DomElement) + 'static ) -> Self

source§

fn on_drop(self, f: impl FnMut(DragEvent, Self::DomElement) + 'static) -> Self

source§

fn on_load(self, f: impl FnMut(Event, Self::DomElement) + 'static) -> Self

source§

impl<Dom: Dom, Mutability> InDom for Video<Dom, Mutability>

§

type Dom = Dom

source§

impl<Dom: Dom> ParentElement<Dom> for Video<Dom>

source§

fn text<'a, T>(self, child: impl RefSignalOrValue<'a, Item = T>) -> Self
where T: 'a + AsRef<str> + Into<String>,

Add a text child to this element Read more
source§

fn child(self, child: impl SignalOrValue<Item = impl ChildNode<Dom>>) -> Self

Add a child to the element. Read more
source§

fn optional_child( self, child: impl SignalOrValue<Item = Option<impl ChildNode<Dom>>> ) -> Self

Add an optional child to the element. Read more
source§

fn children<N>(self, children: impl IntoIterator<Item = N>) -> Self
where N: Into<Node<Dom>>,

Add children to the element. Read more
source§

fn children_signal<N>( self, children: impl SignalVec<Item = N> + 'static ) -> Self
where N: Into<Node<Dom>>,

Add children from a SignalVec to the element. Read more
source§

impl<Dom: Dom, Mutability> Value for Video<Dom, Mutability>

Auto Trait Implementations§

§

impl<Dom, Mutability> Freeze for Video<Dom, Mutability>
where <Dom as Dom>::Element: Freeze,

§

impl<Dom = Dry, Mutability = Mut> !RefUnwindSafe for Video<Dom, Mutability>

§

impl<Dom = Dry, Mutability = Mut> !Send for Video<Dom, Mutability>

§

impl<Dom = Dry, Mutability = Mut> !Sync for Video<Dom, Mutability>

§

impl<Dom, Mutability> Unpin for Video<Dom, Mutability>
where <Dom as Dom>::Element: Unpin, Mutability: Unpin,

§

impl<Dom = Dry, Mutability = Mut> !UnwindSafe for Video<Dom, Mutability>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<'a, T> RefSignalOrValue<'a> for T
where T: RefValue<'a> + 'a,

§

type Item = T

The underlying type of the value or signal.
§

type Map<'b: 'a, F: FnMut(<T as RefSignalOrValue<'a>>::Item) -> R + 'b, R: RefSignalOrValue<'b, Item = R> + 'b> = R

The return type for Self::map. Read more
§

type Signal = Always<<T as RefSignalOrValue<'a>>::Item>

The signal type. Use Always for value types.
source§

fn map<'b, F, R>( self, callback: F ) -> <T as RefSignalOrValue<'a>>::Map<'b, F, R>
where 'b: 'a, R: RefSignalOrValue<'b, Item = R> + 'b, F: FnMut(<T as RefSignalOrValue<'a>>::Item) -> R + 'b,

Map a function over this signal/value to produce a new signal/value.
source§

fn select<FVal, FSig, Data, Out>( self, fn_val: FVal, _fn_sig: FSig, data: Data ) -> Out
where FVal: FnOnce(Data, <T as RefSignalOrValue<'a>>::Item) -> Out, FSig: FnOnce(Data, <T as RefSignalOrValue<'a>>::Signal) -> Out,

Select a function based on whether this is a signal or value. Read more
source§

fn select_spawn<FVal, FSig, Task, Exec>( self, fn_val: FVal, _fn_sig: FSig, executor: &mut Exec )
where FVal: FnOnce(&mut Exec, <T as RefSignalOrValue<'a>>::Item), FSig: FnOnce(&mut Exec, <T as RefSignalOrValue<'a>>::Signal) -> Task, Task: Future<Output = ()> + 'a, Exec: Executor,

Select a function based on whether this is a signal or value. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<D, T> ChildElement<D> for T
where D: Dom, T: Into<GenericElement<D, Const>> + Into<Node<D>> + Value + 'static,

source§

impl<D, T> ChildNode<D> for T
where D: Dom, T: Into<Node<D>> + Value + 'static,

source§

impl<T> RefValue<'static> for T
where T: Value,

source§

impl<T> SignalOrValue for T
where T: RefSignalOrValue<'static>,