pub struct FileType(FileType);Expand description
A structure representing a type of file with accessors for each file type.
It is returned by Metadata::file_type method.
Tuple Fields§
§0: FileTypeImplementations§
Source§impl FileType
impl FileType
1.1.0 · Sourcepub fn is_dir(&self) -> bool
pub fn is_dir(&self) -> bool
Tests whether this file type represents a directory. The
result is mutually exclusive to the results of
is_file and is_symlink; only zero or one of these
tests may pass.
§Examples
1.1.0 · Sourcepub fn is_file(&self) -> bool
pub fn is_file(&self) -> bool
Tests whether this file type represents a regular file.
The result is mutually exclusive to the results of
is_dir and is_symlink; only zero or one of these
tests may pass.
When the goal is simply to read from (or write to) the source, the most
reliable way to test the source can be read (or written to) is to open
it. Only using is_file can break workflows like diff <( prog_a ) on
a Unix-like system for example. See File::open or
OpenOptions::open for more information.
§Examples
1.1.0 · Sourcepub fn is_symlink(&self) -> bool
pub fn is_symlink(&self) -> bool
Tests whether this file type represents a symbolic link.
The result is mutually exclusive to the results of
is_dir and is_file; only zero or one of these
tests may pass.
The underlying Metadata struct needs to be retrieved
with the fs::symlink_metadata function and not the
fs::metadata function. The fs::metadata function
follows symbolic links, so is_symlink would always
return false for the target file.
§Examples
Trait Implementations§
1.5.0 · Source§impl FileTypeExt for FileType
Available on Unix only.
impl FileTypeExt for FileType
Source§fn is_block_device(&self) -> bool
fn is_block_device(&self) -> bool
true if this file type is a block device. Read moreSource§fn is_char_device(&self) -> bool
fn is_char_device(&self) -> bool
true if this file type is a char device. Read moreSource§impl FileTypeExt for FileType
Available on WASI only.
impl FileTypeExt for FileType
Source§fn is_block_device(&self) -> bool
fn is_block_device(&self) -> bool
wasi_ext #71213)true if this file type is a block device.Source§fn is_char_device(&self) -> bool
fn is_char_device(&self) -> bool
wasi_ext #71213)true if this file type is a character device.Source§fn is_socket_dgram(&self) -> bool
fn is_socket_dgram(&self) -> bool
wasi_ext #71213)true if this file type is a socket datagram.Source§fn is_socket_stream(&self) -> bool
fn is_socket_stream(&self) -> bool
wasi_ext #71213)true if this file type is a socket stream.1.64.0 · Source§impl FileTypeExt for FileType
Available on Windows only.
impl FileTypeExt for FileType
Source§fn is_symlink_dir(&self) -> bool
fn is_symlink_dir(&self) -> bool
true if this file type is a symbolic link that is also a directory.Source§fn is_symlink_file(&self) -> bool
fn is_symlink_file(&self) -> bool
true if this file type is a symbolic link that is also a file.impl Copy for FileType
impl Sealed for FileType
impl StructuralPartialEq for FileType
impl TrivialClone for FileType
Auto Trait Implementations§
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const SIZE: usize = _
#[doc(hidden)] const SIZE: usize = _
sized_type_properties)Source§#[doc(hidden)] const ALIGN: usize = _
#[doc(hidden)] const ALIGN: usize = _
sized_type_properties)Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
sized_type_properties)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
sized_type_properties)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
sized_type_properties)[Self]. Read more