#[non_exhaustive]pub enum LogMessageSource {
SlintCode,
Runtime,
}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.
SlintCode
The message originates from Slint source code (e.g. the debug() function in Slint)
Runtime
The message originates from the Slint runtime crates
For example if a file path could not be resolved at runtime.
Trait Implementations§
Source§impl Clone for LogMessageSource
impl Clone for LogMessageSource
Source§fn clone(&self) -> LogMessageSource
fn clone(&self) -> LogMessageSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LogMessageSource
Source§impl Debug for LogMessageSource
impl Debug for LogMessageSource
impl Eq for LogMessageSource
Source§impl PartialEq for LogMessageSource
impl PartialEq for LogMessageSource
Source§fn eq(&self, other: &LogMessageSource) -> bool
fn eq(&self, other: &LogMessageSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogMessageSource
Auto Trait Implementations§
impl Freeze for LogMessageSource
impl RefUnwindSafe for LogMessageSource
impl Send for LogMessageSource
impl Sync for LogMessageSource
impl Unpin for LogMessageSource
impl UnsafeUnpin for LogMessageSource
impl UnwindSafe for LogMessageSource
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.