Crate kneasle_ringing_utils

Source
Expand description

A set of useful utilities which are used by my ringing projects but aren’t directly related to ringing. The name kneasle_ringing_utils is intentionally obscure; this isn’t meant for public use but needs to be on crates.io so that Monument can be installed with cargo install. I don’t want to clutter up possibly useful names on crates.io, hence the obscure name.

Structs§

BigNumFloat
A wrapper over floats where Display formats the number suffixed with a multiplier (e.g. M or G for millions or billions). This differs from BigNumInt because it will output up to 3 decimal places if the number is small enough
BigNumInt
A wrapper over integers where Display formats the number suffixed with a multiplier (e.g. M or G for millions or billions). This differs from BigNumFloat because it will never output a decimal number of values.
PrettyDuration
A wrapper around Duration which formats in a way that’s easy to digest for all values, whether that’s nanoseconds or many days.