[][src]Struct web_sys::ConsoleEvent

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

The ConsoleEvent dictionary.

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

Methods

impl ConsoleEvent[src]

pub fn new() -> Self[src]

Construct a new ConsoleEvent.

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

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

Change the ID field of this object.

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

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

Change the addonId field of this object.

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

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

Change the arguments field of this object.

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

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

Change the columnNumber field of this object.

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

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

Change the consoleID field of this object.

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

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

Change the counter field of this object.

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

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

Change the filename field of this object.

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

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

Change the functionName field of this object.

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

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

Change the groupName field of this object.

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

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

Change the innerID field of this object.

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

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

Change the level field of this object.

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

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

Change the lineNumber field of this object.

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

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

Change the prefix field of this object.

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

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

Change the private field of this object.

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

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

Change the styles field of this object.

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

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

Change the timeStamp field of this object.

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

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

Change the timer field of this object.

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

Trait Implementations

impl AsRef<ConsoleEvent> for ConsoleEvent[src]

impl AsRef<JsValue> for ConsoleEvent[src]

impl AsRef<Object> for ConsoleEvent[src]

impl Clone for ConsoleEvent[src]

impl Debug for ConsoleEvent[src]

impl Deref for ConsoleEvent[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for ConsoleEvent[src]

impl From<ConsoleEvent> for JsValue[src]

impl From<ConsoleEvent> for Object[src]

impl From<JsValue> for ConsoleEvent[src]

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

impl OptionFromWasmAbi for ConsoleEvent[src]

impl OptionIntoWasmAbi for ConsoleEvent[src]

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

impl PartialEq<ConsoleEvent> for ConsoleEvent[src]

impl RefFromWasmAbi for ConsoleEvent[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<ConsoleEvent>

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

impl StructuralPartialEq for ConsoleEvent[src]

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