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§