pub struct VerbosityLevel(/* private fields */);
Expand description
This enum describes the range of verbosity levels.
C++ enum: QDebug::VerbosityLevel
.
This enum describes the range of verbosity levels.
This enum was introduced or modified in Qt 5.13.
See also verbosity() and setVerbosity().
Implementations§
Source§impl VerbosityLevel
impl VerbosityLevel
Sourcepub const MinimumVerbosity: VerbosityLevel
pub const MinimumVerbosity: VerbosityLevel
C++ enum variant: MinimumVerbosity = 0
Sourcepub const DefaultVerbosity: VerbosityLevel
pub const DefaultVerbosity: VerbosityLevel
C++ enum variant: DefaultVerbosity = 2
Sourcepub const MaximumVerbosity: VerbosityLevel
pub const MaximumVerbosity: VerbosityLevel
C++ enum variant: MaximumVerbosity = 7
Trait Implementations§
Source§impl Clone for VerbosityLevel
impl Clone for VerbosityLevel
Source§fn clone(&self) -> VerbosityLevel
fn clone(&self) -> VerbosityLevel
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 VerbosityLevel
impl Debug for VerbosityLevel
Source§impl From<VerbosityLevel> for c_int
impl From<VerbosityLevel> for c_int
Source§fn from(value: VerbosityLevel) -> Self
fn from(value: VerbosityLevel) -> Self
Converts to this type from the input type.
Source§impl From<i32> for VerbosityLevel
impl From<i32> for VerbosityLevel
Source§impl PartialEq for VerbosityLevel
impl PartialEq for VerbosityLevel
impl Copy for VerbosityLevel
impl Eq for VerbosityLevel
impl StructuralPartialEq for VerbosityLevel
Auto Trait Implementations§
impl Freeze for VerbosityLevel
impl RefUnwindSafe for VerbosityLevel
impl Send for VerbosityLevel
impl Sync for VerbosityLevel
impl Unpin for VerbosityLevel
impl UnwindSafe for VerbosityLevel
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