pub enum DebugOptions {
Debug,
Profile(ProfileLevel),
All(ProfileLevel),
}
Expand description
The various debugging options available.
Variants§
Debug
Debug the compilation.
Profile(ProfileLevel)
Profile each kernel executed.
All(ProfileLevel)
Enable all options.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DebugOptions
impl RefUnwindSafe for DebugOptions
impl Send for DebugOptions
impl Sync for DebugOptions
impl Unpin for DebugOptions
impl UnwindSafe for DebugOptions
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