#[repr(transparent)]
pub struct File(_);
Expand description

Wraps the kernel’s struct file.

Invariants

Instances of this type are always ref-counted, that is, a call to get_file ensures that the allocation remains valid at least until the matching call to fput.

Implementations

Constructs a new [struct file] wrapper from a file descriptor.

The file descriptor belongs to the current process.

Returns the current seek/cursor/pointer position (struct file::f_pos).

Returns the credentials of the task that originally opened the file.

Returns the flags associated with the file.

The flags are a combination of the constants in flags.

Trait Implementations

Increments the reference count on the object.

Decrements the reference count on the object. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.