pub struct StorageInfo {
pub total_bytes: u64,
pub used_bytes: u64,
pub free_bytes: u64,
pub min_free_bytes: u64,
pub out_of_space: bool,
}Fields§
§total_bytes: u64§used_bytes: u64§free_bytes: u64§min_free_bytes: u64§out_of_space: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for StorageInfo
impl RefUnwindSafe for StorageInfo
impl Send for StorageInfo
impl Sync for StorageInfo
impl Unpin for StorageInfo
impl UnwindSafe for StorageInfo
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