Crate recore

Source
Expand description

A re-implementation of various std features. Not perfect nor intended to be.

Modules§

borrow
Various reference-related items.
co
The module for stable coroutines.
fmt
Core implementation for formatting operations.
io
Core implementation for I/O operations.

Macros§

dbg
Prints and returns the value of an expression for quick and dirty debugging.
eprint
Print formatted data to stderr.
eprintln
Print formatted data to stderr with a following newline.
format
Create a string with formatted data.
format_args
Create Arguments.
format_args_nl
Create Arguments with a following newline.
print
Print formatted data to stdout.
println
Print formatted data to stdout with a following newline.
stylable
Use this on any and all types implementing any kind of Format. This allows a given type to be styled with any modifier.
write
Write formatted data into a Writer.
writeln
Write formatted data into a Writer with a following newline.

Type Aliases§

Never
The ! type.