menu
FormatOptions
import { FormatOptions } from "destack:debug";
Debug formatting options.
1export struct FormatOptions {2 depth: uint32 | null;3 colors: boolean;4 maxArrayLength: usize;5 maxStringLength: usize;6}Members
depth: uint32 | nullMaximum depth for recursive formatting.
colors: booleanEnable ANSI color output.
maxArrayLength: usizeMaximum array length before truncation.
maxStringLength: usizeMaximum string length before truncation.