Expand description
Common rust utilities
- control_flow: control flow related macros
- cmp: utilities for comparing things
- ansi_string: construct strings that include ansi escape codes
- enum_string: stringify enum variants
Modules§
- ansi_
string - Utilities for constructing ANSI strings
- cmp
- Comparison related utilities
- control_
flow - Control flow related macros
Macros§
- ok_
or_ continue - Unwraps result type or continues
- ok_
or_ continue_ msg - Unwraps result type or continues with error function
- ok_
or_ return - Unwraps result type or returns
- ok_
or_ return_ msg - Unwraps result type or returns with error function
- some_
or_ continue - Unwraps option type or continues
- some_
or_ continue_ msg - Unwraps option type or continues with error function
- some_
or_ return - Unwraps option type or returns
- some_
or_ return_ msg - Unwraps option type or returns with error function