[][src]Struct web_sys::SpeechSynthesisErrorEventInit

#[repr(transparent)]pub struct SpeechSynthesisErrorEventInit { /* fields omitted */ }

The SpeechSynthesisErrorEventInit dictionary.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

Implementations

impl SpeechSynthesisErrorEventInit[src]

pub fn new(
    utterance: &SpeechSynthesisUtterance,
    error: SpeechSynthesisErrorCode
) -> Self
[src]

Construct a new SpeechSynthesisErrorEventInit.

This API requires the following crate features to be activated: SpeechSynthesisErrorCode, SpeechSynthesisErrorEventInit, SpeechSynthesisUtterance

pub fn bubbles(&mut self, val: bool) -> &mut Self[src]

Change the bubbles field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn cancelable(&mut self, val: bool) -> &mut Self[src]

Change the cancelable field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn composed(&mut self, val: bool) -> &mut Self[src]

Change the composed field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn char_index(&mut self, val: u32) -> &mut Self[src]

Change the charIndex field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn char_length(&mut self, val: Option<u32>) -> &mut Self[src]

Change the charLength field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn elapsed_time(&mut self, val: f32) -> &mut Self[src]

Change the elapsedTime field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn name(&mut self, val: &str) -> &mut Self[src]

Change the name field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit

pub fn utterance(&mut self, val: &SpeechSynthesisUtterance) -> &mut Self[src]

Change the utterance field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorEventInit, SpeechSynthesisUtterance

pub fn error(&mut self, val: SpeechSynthesisErrorCode) -> &mut Self[src]

Change the error field of this object.

This API requires the following crate features to be activated: SpeechSynthesisErrorCode, SpeechSynthesisErrorEventInit

Trait Implementations

impl AsRef<JsValue> for SpeechSynthesisErrorEventInit[src]

impl AsRef<Object> for SpeechSynthesisErrorEventInit[src]

impl AsRef<SpeechSynthesisErrorEventInit> for SpeechSynthesisErrorEventInit[src]

impl Clone for SpeechSynthesisErrorEventInit[src]

impl Debug for SpeechSynthesisErrorEventInit[src]

impl Deref for SpeechSynthesisErrorEventInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for SpeechSynthesisErrorEventInit[src]

impl From<JsValue> for SpeechSynthesisErrorEventInit[src]

impl From<SpeechSynthesisErrorEventInit> for JsValue[src]

impl From<SpeechSynthesisErrorEventInit> for Object[src]

impl FromWasmAbi for SpeechSynthesisErrorEventInit[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for SpeechSynthesisErrorEventInit[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a SpeechSynthesisErrorEventInit[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for SpeechSynthesisErrorEventInit[src]

impl OptionFromWasmAbi for SpeechSynthesisErrorEventInit[src]

impl OptionIntoWasmAbi for SpeechSynthesisErrorEventInit[src]

impl<'a> OptionIntoWasmAbi for &'a SpeechSynthesisErrorEventInit[src]

impl PartialEq<SpeechSynthesisErrorEventInit> for SpeechSynthesisErrorEventInit[src]

impl RefFromWasmAbi for SpeechSynthesisErrorEventInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<SpeechSynthesisErrorEventInit>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for SpeechSynthesisErrorEventInit[src]

impl StructuralPartialEq for SpeechSynthesisErrorEventInit[src]

impl WasmDescribe for SpeechSynthesisErrorEventInit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.