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: FileModeThe 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: FileKindThe 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§
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 Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit)