Enum web_sys::ConsoleLevel
source · pub enum ConsoleLevel {
Log = 0,
Warning = 1,
Error = 2,
// some variants omitted
}
Expand description
The ConsoleLevel
enum.
This API requires the following crate features to be activated: ConsoleLevel
Variants§
Implementations§
source§impl ConsoleLevel
impl ConsoleLevel
pub fn from_js_value(obj: &JsValue) -> Option<ConsoleLevel>
Trait Implementations§
source§impl Clone for ConsoleLevel
impl Clone for ConsoleLevel
source§fn clone(&self) -> ConsoleLevel
fn clone(&self) -> ConsoleLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ConsoleLevel
impl Debug for ConsoleLevel
source§impl From<ConsoleLevel> for JsValue
impl From<ConsoleLevel> for JsValue
source§fn from(obj: ConsoleLevel) -> JsValue
fn from(obj: ConsoleLevel) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for ConsoleLevel
impl FromWasmAbi for ConsoleLevel
source§impl IntoWasmAbi for ConsoleLevel
impl IntoWasmAbi for ConsoleLevel
source§impl OptionFromWasmAbi for ConsoleLevel
impl OptionFromWasmAbi for ConsoleLevel
source§impl OptionIntoWasmAbi for ConsoleLevel
impl OptionIntoWasmAbi for ConsoleLevel
source§impl PartialEq for ConsoleLevel
impl PartialEq for ConsoleLevel
source§fn eq(&self, other: &ConsoleLevel) -> bool
fn eq(&self, other: &ConsoleLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ConsoleLevel
impl Eq for ConsoleLevel
impl StructuralEq for ConsoleLevel
impl StructuralPartialEq for ConsoleLevel
Auto Trait Implementations§
impl RefUnwindSafe for ConsoleLevel
impl Send for ConsoleLevel
impl Sync for ConsoleLevel
impl Unpin for ConsoleLevel
impl UnwindSafe for ConsoleLevel
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.