pub struct FileType(_);
A structure representing a type of file with accessors for each file type. It is returned by Metadata::file_type method.
impl FileType[src]
pub fn is_dir(&self) -> bool[src]
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.
fn main() -> std::io::Result<()> {
use std::fs;
let metadata = fs::metadata("foo.txt")?;
let file_type = metadata.file_type();
assert_eq!(file_type.is_dir(), false);
Ok(())
}pub fn is_file(&self) -> bool[src]
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.
fn main() -> std::io::Result<()> {
use std::fs;
let metadata = fs::metadata("foo.txt")?;
let file_type = metadata.file_type();
assert_eq!(file_type.is_file(), true);
Ok(())
}pub fn is_symlink(&self) -> bool[src]
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.
use std::fs;
fn main() -> std::io::Result<()> {
let metadata = fs::symlink_metadata("foo.txt")?;
let file_type = metadata.file_type();
assert_eq!(file_type.is_symlink(), false);
Ok(())
}impl FileTypeExt for FileType[src]1.5.0
fn is_block_device(&self) -> bool[src]
fn is_char_device(&self) -> bool[src]
fn is_fifo(&self) -> bool[src]
fn is_socket(&self) -> bool[src]
impl FileTypeExt for FileType[src]
fn is_symlink_dir(&self) -> bool[src]
fn is_symlink_file(&self) -> bool[src]
impl PartialEq<FileType> for FileType[src]
impl Eq for FileType[src]
impl Hash for FileType[src]
fn hash<__H:Â Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, [src]1.3.0
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for FileType[src]
impl Copy for FileType[src]
impl Clone for FileType[src]
impl UnwindSafe for FileTypeimpl RefUnwindSafe for FileTypeimpl Unpin for FileTypeimpl Send for FileTypeimpl Sync for FileTypeimpl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
type Error = InfallibleThe type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
type Error = <U as TryFrom<T>>::ErrorThe type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
fn borrow(&self) -> &T[src]
impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized,Â
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized,Â
type Item = <I as Iterator>::Item;
impl<'_, R:Â Read + ?Sized> Read for &'_ mut R
impl<'_, W:Â Write + ?Sized> Write for &'_ mut W
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
fn borrow_mut(&mut self) -> &mut T[src]
impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized,Â
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized,Â
type Item = <I as Iterator>::Item;
impl<'_, R:Â Read + ?Sized> Read for &'_ mut R
impl<'_, W:Â Write + ?Sized> Write for &'_ mut W
impl<T> Any for T where
    T: 'static + ?Sized, [src]
impl<T> ToOwned for T where
    T: Clone, [src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/fs/struct.FileType.html