Current behavior is to sort imports lexicographically: `use std::num::{NonZeroU16, NonZeroU8, NonZeroU32, NonZeroU64};` Natural sorting would be slightly nicer: `use std::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64};`
Current behavior is to sort imports lexicographically:
use std::num::{NonZeroU16, NonZeroU8, NonZeroU32, NonZeroU64};Natural sorting would be slightly nicer:
use std::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64};