Struct windows_sys::Win32::Storage::FileSystem::DISK_SPACE_INFORMATION
[−]#[repr(C)]pub struct DISK_SPACE_INFORMATION {Show 13 fields
pub ActualTotalAllocationUnits: u64,
pub ActualAvailableAllocationUnits: u64,
pub ActualPoolUnavailableAllocationUnits: u64,
pub CallerTotalAllocationUnits: u64,
pub CallerAvailableAllocationUnits: u64,
pub CallerPoolUnavailableAllocationUnits: u64,
pub UsedAllocationUnits: u64,
pub TotalReservedAllocationUnits: u64,
pub VolumeStorageReserveAllocationUnits: u64,
pub AvailableCommittedAllocationUnits: u64,
pub PoolAvailableAllocationUnits: u64,
pub SectorsPerAllocationUnit: u32,
pub BytesPerSector: u32,
}
Expand description
Required features: ‘Win32_Storage_FileSystem’
Fields
ActualTotalAllocationUnits: u64
ActualAvailableAllocationUnits: u64
CallerTotalAllocationUnits: u64
CallerAvailableAllocationUnits: u64
UsedAllocationUnits: u64
TotalReservedAllocationUnits: u64
VolumeStorageReserveAllocationUnits: u64
AvailableCommittedAllocationUnits: u64
PoolAvailableAllocationUnits: u64
SectorsPerAllocationUnit: u32
BytesPerSector: u32
Trait Implementations
impl Clone for DISK_SPACE_INFORMATION
impl Clone for DISK_SPACE_INFORMATION
impl Copy for DISK_SPACE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for DISK_SPACE_INFORMATION
impl Send for DISK_SPACE_INFORMATION
impl Sync for DISK_SPACE_INFORMATION
impl Unpin for DISK_SPACE_INFORMATION
impl UnwindSafe for DISK_SPACE_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more