[][src]Struct web_sys::DecoderDoctorNotification

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

The DecoderDoctorNotification dictionary.

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

Methods

impl DecoderDoctorNotification[src]

pub fn new(
    decoder_doctor_report_id: &str,
    is_solved: bool,
    type_: DecoderDoctorNotificationType
) -> Self
[src]

Construct a new DecoderDoctorNotification.

This API requires the following crate features to be activated: DecoderDoctorNotification, DecoderDoctorNotificationType

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

Change the decodeIssue field of this object.

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

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

Change the decoderDoctorReportId field of this object.

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

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

Change the docURL field of this object.

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

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

Change the formats field of this object.

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

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

Change the isSolved field of this object.

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

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

Change the resourceURL field of this object.

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

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

Change the type field of this object.

This API requires the following crate features to be activated: DecoderDoctorNotification, DecoderDoctorNotificationType

Trait Implementations

impl AsRef<DecoderDoctorNotification> for DecoderDoctorNotification[src]

impl AsRef<JsValue> for DecoderDoctorNotification[src]

impl AsRef<Object> for DecoderDoctorNotification[src]

impl Clone for DecoderDoctorNotification[src]

impl Debug for DecoderDoctorNotification[src]

impl Deref for DecoderDoctorNotification[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for DecoderDoctorNotification[src]

impl From<DecoderDoctorNotification> for JsValue[src]

impl From<DecoderDoctorNotification> for Object[src]

impl From<JsValue> for DecoderDoctorNotification[src]

impl FromWasmAbi for DecoderDoctorNotification[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 DecoderDoctorNotification[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 DecoderDoctorNotification[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 DecoderDoctorNotification[src]

impl OptionFromWasmAbi for DecoderDoctorNotification[src]

impl OptionIntoWasmAbi for DecoderDoctorNotification[src]

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

impl PartialEq<DecoderDoctorNotification> for DecoderDoctorNotification[src]

impl RefFromWasmAbi for DecoderDoctorNotification[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<DecoderDoctorNotification>

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 DecoderDoctorNotification[src]

impl StructuralPartialEq for DecoderDoctorNotification[src]

impl WasmDescribe for DecoderDoctorNotification[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.