#[repr(u32)]pub enum ConsoleFunc {
Assert = 1,
Log = 2,
Debug = 3,
Trace = 4,
Info = 5,
Warn = 6,
Error = 7,
Exception = 8,
Dir = 9,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ConsoleFunc
impl Clone for ConsoleFunc
Source§fn clone(&self) -> ConsoleFunc
fn clone(&self) -> ConsoleFunc
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConsoleFunc
impl Debug for ConsoleFunc
Source§impl From<u32> for ConsoleFunc
impl From<u32> for ConsoleFunc
Source§impl Hash for ConsoleFunc
impl Hash for ConsoleFunc
Source§impl Ord for ConsoleFunc
impl Ord for ConsoleFunc
Source§fn cmp(&self, other: &ConsoleFunc) -> Ordering
fn cmp(&self, other: &ConsoleFunc) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ConsoleFunc
impl PartialEq for ConsoleFunc
Source§impl PartialOrd for ConsoleFunc
impl PartialOrd for ConsoleFunc
impl Copy for ConsoleFunc
impl Eq for ConsoleFunc
impl StructuralPartialEq for ConsoleFunc
Auto Trait Implementations§
impl Freeze for ConsoleFunc
impl RefUnwindSafe for ConsoleFunc
impl Send for ConsoleFunc
impl Sync for ConsoleFunc
impl Unpin for ConsoleFunc
impl UnwindSafe for ConsoleFunc
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