fs4/
fs_stats.rs

1/// `FsStats` contains some common stats about a file system.
2#[derive(Clone, Debug, PartialEq, Eq, Hash)]
3pub struct FsStats {
4    pub(crate) free_space: u64,
5    pub(crate) available_space: u64,
6    pub(crate) total_space: u64,
7    pub(crate) allocation_granularity: u64,
8}
9
10impl FsStats {
11    /// Returns the number of free bytes in the file system containing the provided
12    /// path.
13    pub fn free_space(&self) -> u64 {
14        self.free_space
15    }
16
17    /// Returns the available space in bytes to non-priveleged users in the file
18    /// system containing the provided path.
19    pub fn available_space(&self) -> u64 {
20        self.available_space
21    }
22
23    /// Returns the total space in bytes in the file system containing the provided
24    /// path.
25    pub fn total_space(&self) -> u64 {
26        self.total_space
27    }
28
29    /// Returns the filesystem's disk space allocation granularity in bytes.
30    /// The provided path may be for any file in the filesystem.
31    ///
32    /// On Posix, this is equivalent to the filesystem's block size.
33    /// On Windows, this is equivalent to the filesystem's cluster size.
34    pub fn allocation_granularity(&self) -> u64 {
35        self.allocation_granularity
36    }
37}