pub enum DebugCallbackBehavior {
Ignore,
DebugMessageOnError,
PrintAll,
Custom {
callback: DebugCallback,
synchronous: bool,
},
}Expand description
Describes the behavior that the debug output should have.
Variants§
Ignore
Don’t do anything. This is the default behavior in release.
DebugMessageOnError
Print a message on stdout on error, except in some circumstances like when compiling shaders. This is the default behavior in debug mode.
PrintAll
Print every single output received by the driver.
Custom
Use a custom callback.
Fields
§
callback: DebugCallbackThe function to be called.
Trait Implementations§
Source§impl Default for DebugCallbackBehavior
impl Default for DebugCallbackBehavior
Source§fn default() -> DebugCallbackBehavior
fn default() -> DebugCallbackBehavior
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DebugCallbackBehavior
impl !RefUnwindSafe for DebugCallbackBehavior
impl !Send for DebugCallbackBehavior
impl !Sync for DebugCallbackBehavior
impl Unpin for DebugCallbackBehavior
impl !UnwindSafe for DebugCallbackBehavior
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