pub trait FileExists {
// Required method
fn file_exists(&mut self, fname: &String) -> bool;
}
Required Methods§
Sourcefn file_exists(&mut self, fname: &String) -> bool
fn file_exists(&mut self, fname: &String) -> bool
| Returns true iff the named file exists. |