pub trait VideoComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlVideoElement> {
    fn height<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn plays_inline(self, v: Option<bool>) -> Self { ... }
fn poster(self, v: Option<&str>) -> Self { ... }
fn width<'a, T>(self, v: Option<T>) -> Self
    where
        T: Into<NumOrStr<'a>>
, { ... }
fn disable_picture_in_picture(self, v: Option<bool>) -> Self { ... }
fn disable_remote_playback(self, v: Option<bool>) -> Self { ... } }

Provided methods

Implementors