it doesn't matter if he use sizeof(char), as this would only consume compile time and it would become a constant.
Fixed
https://doc.rust-lang.org/1.0.0/style/style/naming/README.html
In CamelCase, acronyms count as one word: use Uuid rather than UUID. In snake_case, acronyms are lower-cased: is_xid_start.
CamelCase
Uuid
UUID
snake_case
is_xid_start
Loading collection data...
it doesn't matter if he use sizeof(char), as this would only consume compile time and it would become a constant.
Fixed
https://doc.rust-lang.org/1.0.0/style/style/naming/README.html