//! Util functions
usenum_format::{Locale, ToFormattedString};/// Format a number with thousands separator
pubfnfmt_nb(n:u32)-> String{
n.to_formatted_string(&Locale::en)}/// Check if struct has the right traits
pubfnis_normal<T:Sized+Send+Sync+ Unpin>(){}