pub struct File { /* private fields */ }
Available on crate feature tokio only.
Expand description

Wrapper around tokio::fs::File which adds more helpful information to all errors.

Implementations

Wrapper for tokio::fs::File::open.

Methods added by fs-err that are not available on tokio::fs::File.

Creates a File from a raw file and its path.

Extract the raw file and its path from this File.

Returns a reference to the underlying tokio::fs::File.

Returns a mutable reference to the underlying tokio::fs::File.

Returns a reference to the path that this file was created with.

Trait Implementations

Extracts the raw file descriptor. Read more
Attempts to read from the AsyncRead into buf. Read more
Attempts to seek to an offset, in bytes, in a stream. Read more
Waits for a seek operation to complete. Read more
Attempt to write bytes from buf into the object. Read more
Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
Like poll_write, except that it writes from a slice of buffers. Read more
Determines if this writer has an efficient poll_write_vectored implementation. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.

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.