pub trait IoErrorExt: Sealed {
// Required method
fn is_not_a_directory(&self) -> bool;
}
Expand description
Implementation of ErrorKind::NotADirectory
that doesn’t require Nightly
Required Methods§
Sourcefn is_not_a_directory(&self) -> bool
fn is_not_a_directory(&self) -> bool
Is this io::ErrorKind::NotADirectory
?