#[repr(C)]pub enum VSMessageType {
Debug = 0,
Information = 1,
Warning = 2,
Critical = 3,
Fatal = 4,
}
Expand description
See addLogHandler()
.
Variants§
Debug = 0
Information = 1
Warning = 2
Critical = 3
Fatal = 4
also terminates the process, should generally not be used by normal filters
Trait Implementations§
Source§impl Clone for VSMessageType
impl Clone for VSMessageType
Source§fn clone(&self) -> VSMessageType
fn clone(&self) -> VSMessageType
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 VSMessageType
impl Debug for VSMessageType
Source§impl Hash for VSMessageType
impl Hash for VSMessageType
Source§impl Ord for VSMessageType
impl Ord for VSMessageType
Source§fn cmp(&self, other: &VSMessageType) -> Ordering
fn cmp(&self, other: &VSMessageType) -> 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 VSMessageType
impl PartialEq for VSMessageType
Source§impl PartialOrd for VSMessageType
impl PartialOrd for VSMessageType
impl Copy for VSMessageType
impl Eq for VSMessageType
impl StructuralPartialEq for VSMessageType
Auto Trait Implementations§
impl Freeze for VSMessageType
impl RefUnwindSafe for VSMessageType
impl Send for VSMessageType
impl Sync for VSMessageType
impl Unpin for VSMessageType
impl UnwindSafe for VSMessageType
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