Trait FloppyFileType

Source
pub trait FloppyFileType:
    Debug
    + Unpin
    + Send {
    // Required methods
    fn is_dir(&self) -> bool;
    fn is_file(&self) -> bool;
    fn is_symlink(&self) -> bool;
}

Required Methods§

Source

fn is_dir(&self) -> bool

Source

fn is_file(&self) -> bool

Implementors§