We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I think f64::from(bool) and f32::from(bool) could be added. Currently I perform that in two steps:
f64::from(bool)
f32::from(bool)
f64::from(u32::from(bool)) f32::from(u16::from(bool))
f64::from(u32::from(bool))
f32::from(u16::from(bool))