#[repr(u8)]pub enum Destination {
Console = 2,
Debugger = 1,
Null = 0,
}Expand description
Destination for stderr redirection with redirect_stderr.
Variants§
Console = 2
Print stderr to the active Console window. This is the default behavior.
Debugger = 1
Print stderr via ctru_sys::svcOutputDebugString. This allows you to capture error and panic messages with GDB or other debuggers.
Null = 0
Swallow outputs from stderr.