pub enum DebugMask {
Core,
Alloc,
Mutex,
Event,
Http,
Mail,
Stream,
All,
}
Expand description
Debug masks for use with ngx_log_debug_mask
, these represent the only accepted values for
the mask.
Variants§
Core
Aligns to the NGX_LOG_DEBUG_CORE mask.
Alloc
Aligns to the NGX_LOG_DEBUG_ALLOC mask.
Mutex
Aligns to the NGX_LOG_DEBUG_MUTEX mask.
Event
Aligns to the NGX_LOG_DEBUG_EVENT mask.
Http
Aligns to the NGX_LOG_DEBUG_HTTP mask.
Aligns to the NGX_LOG_DEBUG_MAIL mask.
Stream
Aligns to the NGX_LOG_DEBUG_STREAM mask.
All
Aligns to the NGX_LOG_DEBUG_ALL mask.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DebugMask
impl RefUnwindSafe for DebugMask
impl Send for DebugMask
impl Sync for DebugMask
impl Unpin for DebugMask
impl UnwindSafe for DebugMask
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