pub trait VideoExtension: Sized + HasAttributes {
// Provided methods
fn autoplay(self, value: impl IntoAttributeValue) -> Self { ... }
fn controls(self, value: impl IntoAttributeValue) -> Self { ... }
fn crossorigin(self, value: impl IntoAttributeValue) -> Self { ... }
fn height(self, value: impl IntoAttributeValue) -> Self { ... }
fn loop(self, value: impl IntoAttributeValue) -> Self { ... }
fn muted(self, value: impl IntoAttributeValue) -> Self { ... }
fn preload(self, value: impl IntoAttributeValue) -> Self { ... }
fn playsinline(self, value: impl IntoAttributeValue) -> Self { ... }
fn poster(self, value: impl IntoAttributeValue) -> Self { ... }
fn src(self, value: impl IntoAttributeValue) -> Self { ... }
fn width(self, value: impl IntoAttributeValue) -> Self { ... }
}
Provided Methods§
fn autoplay(self, value: impl IntoAttributeValue) -> Self
fn controls(self, value: impl IntoAttributeValue) -> Self
fn crossorigin(self, value: impl IntoAttributeValue) -> Self
fn height(self, value: impl IntoAttributeValue) -> Self
fn loop(self, value: impl IntoAttributeValue) -> Self
fn muted(self, value: impl IntoAttributeValue) -> Self
fn preload(self, value: impl IntoAttributeValue) -> Self
fn playsinline(self, value: impl IntoAttributeValue) -> Self
fn poster(self, value: impl IntoAttributeValue) -> Self
fn src(self, value: impl IntoAttributeValue) -> Self
fn width(self, value: impl IntoAttributeValue) -> Self
Object Safety§
This trait is not object safe.