pub trait AudioExtension: 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 muted(self, value: impl IntoAttributeValue) -> Self { ... }
fn preload(self, value: impl IntoAttributeValue) -> Self { ... }
fn src(self, value: impl IntoAttributeValue) -> Self { ... }
fn loop(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 muted(self, value: impl IntoAttributeValue) -> Self
fn preload(self, value: impl IntoAttributeValue) -> Self
fn src(self, value: impl IntoAttributeValue) -> Self
fn loop(self, value: impl IntoAttributeValue) -> Self
Object Safety§
This trait is not object safe.