Enum cubecl_runtime::debug::DebugLogger
source · pub enum DebugLogger {
File(DebugFileLogger),
Stdout,
None,
}
Expand description
Debugging logger.
Variants§
File(DebugFileLogger)
Log debugging information into a file.
Stdout
Log debugging information into standard output.
None
Don’t log debugging information.
Implementations§
Trait Implementations§
source§impl Debug for DebugLogger
impl Debug for DebugLogger
Auto Trait Implementations§
impl Freeze for DebugLogger
impl RefUnwindSafe for DebugLogger
impl Send for DebugLogger
impl Sync for DebugLogger
impl Unpin for DebugLogger
impl UnwindSafe for DebugLogger
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