pub struct Fs {
pub u: Option<u32>,
pub t: Option<u32>,
pub pmt: Option<u64>,
}
Fields§
§u: Option<u32>
Estimate of used filesystem space in kilobytes
t: Option<u32>
Total filesystem size in kilobytes
pmt: Option<u64>
Unix timestamp for the last modification to the presets.json file. Not accurate after boot or after using /edit
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fs
impl<'de> Deserialize<'de> for Fs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Fs
Auto Trait Implementations§
impl Freeze for Fs
impl RefUnwindSafe for Fs
impl Send for Fs
impl Sync for Fs
impl Unpin for Fs
impl UnwindSafe for Fs
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