docs.rs failed to build rong_console-0.3.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
rong_console-0.1.1
rong_console
Implements the Web Console API with format string support.
JS APIs
console.log(...args)— log to stdoutconsole.info(...args)— log informational message to stdoutconsole.debug(...args)— log debug message to stdoutconsole.warn(...args)— log warning to stderrconsole.error(...args)— log error to stderrconsole.assert(condition, ...args)— log assertion failures to stderrconsole.dir(value, options?)— inspect a value with optional depth/length limitsconsole.trace(...args)— log a stack traceconsole.time(label?)/console.timeLog(label?, ...args)/console.timeEnd(label?)— timer helpersconsole.count(label?)/console.countReset(label?)— counters for repeated code pathsconsole.clear()— clear the console
Format specifiers: %s (string), %d/%i (integer), %f (float), %o (object inspection).
Inspect output understands typed arrays, circular references, class instances, and errors with stack traces.