disket 0.1.0

Cross-platform abstractions for disks/volumes management
Documentation
#![allow(dead_code)]
#![allow(unused)]

use std::ffi::OsStr;

pub struct Device {}

impl Device {
    pub fn name(&self) -> &OsStr {
        todo!();
    }

    pub fn label(&self) -> &OsStr {
        todo!();
    }

    pub fn mount_point(&self) -> &OsStr {
        todo!();
    }

    pub fn file_system(&self) -> &OsStr {
        todo!();
    }

    pub fn total(&self) -> usize {
        todo!();
    }

    pub fn available(&self) -> usize {
        todo!();
    }
}