pub enum SortMode {
Name,
None,
Size,
SizeDesc,
}Expand description
Controls the order in which files are distributed into buckets.
Variants§
Name
Alphabetical by path (default).
None
Filesystem iteration order — no sort applied.
Size
Ascending by file size (smallest first).
SizeDesc
Descending by file size (largest first).
Trait Implementations§
impl Copy for SortMode
impl Eq for SortMode
impl StructuralPartialEq for SortMode
Auto Trait Implementations§
impl Freeze for SortMode
impl RefUnwindSafe for SortMode
impl Send for SortMode
impl Sync for SortMode
impl Unpin for SortMode
impl UnsafeUnpin for SortMode
impl UnwindSafe for SortMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more