Enum platter_walk::Order [] [src]

pub enum Order {
    Dentries,
    Inode,
    Content,
}

Variants

Return directory entries as they are encountered Only directories are visited sequentially based on physical layout This is most useful when file path and type are all the information that's needed

Return directory entries in batches sorted by inode. Can be used speed up stat() calls based on the assumption that inode tables are laid out by ID and thus sequential traversal will be faster.

Return directory entries sorted by physical offset of the file contents Can be used to get sequential reads over multiple files

Trait Implementations

impl PartialEq for Order
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for Order
[src]

impl Clone for Order
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more