File

Struct File 

Source
pub struct File {
    pub mode: FileMode,
    pub file: FileKind,
}
Expand description

The File struct represents an abstraction over a file descriptor in the operating system.

This struct encapsulates information about an open file, access mode, and other metadata necessary for performing file operations such as reading, writing, and seeking. It also holds a reference to the kernel’s underlying file structure (FileKind), allowing the operating system to perform actual file operations on the filesystem.

The File struct is used to track the state of an open file, ensuring that the correct file operations are executed and resources are managed efficiently.

Fields§

§mode: FileMode

The access mode of the file (e.g., read, write, read/write).

FileMode is used by user program to tell kernel “how” open the file, and records internally what operation can be done on the file.

Refer to FileMode for detail.

§file: FileKind

The kernel file structure.

This field contains the underlying representation of the file within the operating system kernel. It holds the kernel’s metadata for the file, such as its name, permissions, and the actual file object used to perform system-level file operations.

The FileKind enum allows this field to represent either a regular file (FileKind::RegularFile) or a special file such as standard input/output (FileKind::Stdio).

Trait Implementations§

Source§

impl Clone for File

Source§

fn clone(&self) -> File

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for File

§

impl !RefUnwindSafe for File

§

impl Send for File

§

impl Sync for File

§

impl Unpin for File

§

impl !UnwindSafe for File

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.