pub trait IsntFileTypeExtExt<T: ?Sized>: Sealed<T> + FileTypeExt {
// Required methods
fn is_not_block_device(&self) -> bool;
fn is_not_char_device(&self) -> bool;
fn is_not_fifo(&self) -> bool;
fn is_not_socket(&self) -> bool;
}
Expand description
Extension for FileTypeExt
Required Methods§
Sourcefn is_not_block_device(&self) -> bool
fn is_not_block_device(&self) -> bool
The negation of is_block_device
Sourcefn is_not_char_device(&self) -> bool
fn is_not_char_device(&self) -> bool
The negation of is_char_device
Sourcefn is_not_fifo(&self) -> bool
fn is_not_fifo(&self) -> bool
The negation of is_fifo
Sourcefn is_not_socket(&self) -> bool
fn is_not_socket(&self) -> bool
The negation of is_socket