[][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() -> ConsoleEvent[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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure 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]

Configure the timer field of this object

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

Trait Implementations

impl AsRef<JsValue> for ConsoleEvent[src]

impl Clone for ConsoleEvent[src]

impl Debug for ConsoleEvent[src]

impl From<ConsoleEvent> for JsValue[src]

impl FromWasmAbi for ConsoleEvent[src]

type Abi = <Object 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 = <Object 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 Object 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 RefFromWasmAbi for ConsoleEvent[src]

type Abi = <Object 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 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.