#[non_exhaustive]pub enum QueryMessagePriority {
Trace,
Debug,
Info,
Warn,
Error,
Fatal,
}Expand description
The priority of a query message.
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.
Trace
Trace message priority.
Debug
Debug message priority.
Info
Info message priority.
Warn
Warn message priority.
Error
Error message priority.
Fatal
Fatal message priority.
Trait Implementations§
Source§impl Clone for QueryMessagePriority
impl Clone for QueryMessagePriority
Source§fn clone(&self) -> QueryMessagePriority
fn clone(&self) -> QueryMessagePriority
Returns a duplicate 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 QueryMessagePriority
impl Debug for QueryMessagePriority
Source§impl<'de> Deserialize<'de> for QueryMessagePriority
impl<'de> Deserialize<'de> for QueryMessagePriority
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for QueryMessagePriority
impl PartialEq for QueryMessagePriority
Source§impl Serialize for QueryMessagePriority
impl Serialize for QueryMessagePriority
impl Copy for QueryMessagePriority
impl Eq for QueryMessagePriority
impl StructuralPartialEq for QueryMessagePriority
Auto Trait Implementations§
impl Freeze for QueryMessagePriority
impl RefUnwindSafe for QueryMessagePriority
impl Send for QueryMessagePriority
impl Sync for QueryMessagePriority
impl Unpin for QueryMessagePriority
impl UnwindSafe for QueryMessagePriority
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