#[non_exhaustive]#[repr(u32)]pub enum ConsoleLogLevel {
Show 18 variants
All = 0,
Debug = 1,
Log = 2,
Info = 3,
Clear = 4,
Trace = 5,
TimeLog = 6,
TimeEnd = 7,
Time = 8,
Group = 9,
GroupEnd = 10,
Profile = 11,
ProfileEnd = 12,
Dir = 13,
Dirxml = 14,
Warn = 15,
Error = 16,
Off = 17,
}
Expand description
The ConsoleLogLevel
enum.
This API requires the following crate features to be activated: ConsoleLogLevel
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
All = 0
Debug = 1
Log = 2
Info = 3
Clear = 4
Trace = 5
TimeLog = 6
TimeEnd = 7
Time = 8
Group = 9
GroupEnd = 10
Profile = 11
ProfileEnd = 12
Dir = 13
Dirxml = 14
Warn = 15
Error = 16
Off = 17
Implementations§
Source§impl ConsoleLogLevel
impl ConsoleLogLevel
pub fn from_js_value(obj: &JsValue) -> Option<ConsoleLogLevel>
Trait Implementations§
Source§impl Clone for ConsoleLogLevel
impl Clone for ConsoleLogLevel
Source§fn clone(&self) -> ConsoleLogLevel
fn clone(&self) -> ConsoleLogLevel
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 ConsoleLogLevel
impl Debug for ConsoleLogLevel
Source§impl From<ConsoleLogLevel> for JsValue
impl From<ConsoleLogLevel> for JsValue
Source§fn from(val: ConsoleLogLevel) -> Self
fn from(val: ConsoleLogLevel) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for ConsoleLogLevel
impl FromWasmAbi for ConsoleLogLevel
Source§impl IntoWasmAbi for ConsoleLogLevel
impl IntoWasmAbi for ConsoleLogLevel
Source§impl OptionFromWasmAbi for ConsoleLogLevel
impl OptionFromWasmAbi for ConsoleLogLevel
Source§impl OptionIntoWasmAbi for ConsoleLogLevel
impl OptionIntoWasmAbi for ConsoleLogLevel
Source§impl PartialEq for ConsoleLogLevel
impl PartialEq for ConsoleLogLevel
impl Copy for ConsoleLogLevel
impl Eq for ConsoleLogLevel
impl StructuralPartialEq for ConsoleLogLevel
Auto Trait Implementations§
impl Freeze for ConsoleLogLevel
impl RefUnwindSafe for ConsoleLogLevel
impl Send for ConsoleLogLevel
impl Sync for ConsoleLogLevel
impl Unpin for ConsoleLogLevel
impl UnwindSafe for ConsoleLogLevel
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§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
.