pub struct DiskManager {
disks: [Option<DiskInfo>; 8],
count: usize,
}Expand description
Manager for discovering and accessing disks
Fields§
§disks: [Option<DiskInfo>; 8]§count: usizeImplementations§
Auto Trait Implementations§
impl Freeze for DiskManager
impl RefUnwindSafe for DiskManager
impl Send for DiskManager
impl Sync for DiskManager
impl Unpin for DiskManager
impl UnwindSafe for DiskManager
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