pub struct File { /* private fields */ }
std
only.Expand description
An object providing access to an open file on the filesystem.
An instance of a File
can be read and/or written depending on what options
it was opened with. Files also implement Seek
to alter the logical cursor
that the file contains internally.
Files are automatically closed when they go out of scope. Errors detected
on closing are ignored by the implementation of Drop
. Use the method
sync_all
if these errors must be manually handled.
File
does not buffer reads and writes. For efficiency, consider wrapping the
file in a BufReader
or BufWriter
when performing many small read
or write
calls, unless unbuffered reads and writes are required.
§Examples
Creates a new file and write bytes to it (you can also use write
):
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut file = File::create("foo.txt")?;
file.write_all(b"Hello, world!")?;
Ok(())
}
Reads the contents of a file into a String
(you can also use read
):
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut file = File::open("foo.txt")?;
let mut contents = String::new();
file.read_to_string(&mut contents)?;
assert_eq!(contents, "Hello, world!");
Ok(())
}
Using a buffered Read
er:
use std::fs::File;
use std::io::BufReader;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let file = File::open("foo.txt")?;
let mut buf_reader = BufReader::new(file);
let mut contents = String::new();
buf_reader.read_to_string(&mut contents)?;
assert_eq!(contents, "Hello, world!");
Ok(())
}
Note that, although read and write methods require a &mut File
, because
of the interfaces for Read
and Write
, the holder of a &File
can
still modify the file, either through methods that take &File
or by
retrieving the underlying OS object and modifying the file that way.
Additionally, many operating systems allow concurrent modification of files
by different processes. Avoid assuming that holding a &File
means that the
file will not change.
§Platform-specific behavior
On Windows, the implementation of Read
and Write
traits for File
perform synchronous I/O operations. Therefore the underlying file must not
have been opened for asynchronous I/O (e.g. by using FILE_FLAG_OVERLAPPED
).
Implementations§
Source§impl File
impl File
1.0.0 · Sourcepub fn open<P>(path: P) -> Result<File, Error> ⓘ
pub fn open<P>(path: P) -> Result<File, Error> ⓘ
Attempts to open a file in read-only mode.
See the OpenOptions::open
method for more details.
If you only need to read the entire file contents,
consider std::fs::read()
or
std::fs::read_to_string()
instead.
§Errors
This function will return an error if path
does not already exist.
Other errors may also be returned according to OpenOptions::open
.
§Examples
use std::fs::File;
use std::io::Read;
fn main() -> std::io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut data = vec![];
f.read_to_end(&mut data)?;
Ok(())
}
Sourcepub fn open_buffered<P>(path: P) -> Result<BufReader<File>, Error> ⓘ
🔬This is a nightly-only experimental API. (file_buffered
)
pub fn open_buffered<P>(path: P) -> Result<BufReader<File>, Error> ⓘ
file_buffered
)Attempts to open a file in read-only mode with buffering.
See the OpenOptions::open
method, the BufReader
type,
and the BufRead
trait for more details.
If you only need to read the entire file contents,
consider std::fs::read()
or
std::fs::read_to_string()
instead.
§Errors
This function will return an error if path
does not already exist,
or if memory allocation fails for the new buffer.
Other errors may also be returned according to OpenOptions::open
.
§Examples
#![feature(file_buffered)]
use std::fs::File;
use std::io::BufRead;
fn main() -> std::io::Result<()> {
let mut f = File::open_buffered("foo.txt")?;
assert!(f.capacity() > 0);
for (line, i) in f.lines().zip(1..) {
println!("{i:6}: {}", line?);
}
Ok(())
}
1.0.0 · Sourcepub fn create<P>(path: P) -> Result<File, Error> ⓘ
pub fn create<P>(path: P) -> Result<File, Error> ⓘ
Opens a file in write-only mode.
This function will create a file if it does not exist, and will truncate it if it does.
Depending on the platform, this function may fail if the
full directory path does not exist.
See the OpenOptions::open
function for more details.
See also std::fs::write()
for a simple function to
create a file with some given data.
§Examples
use std::fs::File;
use std::io::Write;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.write_all(&1234_u32.to_be_bytes())?;
Ok(())
}
Sourcepub fn create_buffered<P>(path: P) -> Result<BufWriter<File>, Error> ⓘ
🔬This is a nightly-only experimental API. (file_buffered
)
pub fn create_buffered<P>(path: P) -> Result<BufWriter<File>, Error> ⓘ
file_buffered
)Opens a file in write-only mode with buffering.
This function will create a file if it does not exist, and will truncate it if it does.
Depending on the platform, this function may fail if the full directory path does not exist.
See the OpenOptions::open
method and the
BufWriter
type for more details.
See also std::fs::write()
for a simple function to
create a file with some given data.
§Examples
#![feature(file_buffered)]
use std::fs::File;
use std::io::Write;
fn main() -> std::io::Result<()> {
let mut f = File::create_buffered("foo.txt")?;
assert!(f.capacity() > 0);
for i in 0..100 {
writeln!(&mut f, "{i}")?;
}
f.flush()?;
Ok(())
}
1.77.0 · Sourcepub fn create_new<P>(path: P) -> Result<File, Error> ⓘ
pub fn create_new<P>(path: P) -> Result<File, Error> ⓘ
Creates a new file in read-write mode; error if the file exists.
This function will create a file if it does not exist, or return an error if it does. This
way, if the call succeeds, the file returned is guaranteed to be new.
If a file exists at the target location, creating a new file will fail with AlreadyExists
or another error based on the situation. See OpenOptions::open
for a
non-exhaustive list of likely errors.
This option is useful because it is atomic. Otherwise between checking whether a file exists and creating a new one, the file may have been created by another process (a TOCTOU race condition / attack).
This can also be written using
File::options().read(true).write(true).create_new(true).open(...)
.
§Examples
use std::fs::File;
use std::io::Write;
fn main() -> std::io::Result<()> {
let mut f = File::create_new("foo.txt")?;
f.write_all("Hello, world!".as_bytes())?;
Ok(())
}
1.58.0 · Sourcepub fn options() -> OpenOptions
pub fn options() -> OpenOptions
Returns a new OpenOptions object.
This function returns a new OpenOptions object that you can use to
open or create a file with specific options if open()
or create()
are not appropriate.
It is equivalent to OpenOptions::new()
, but allows you to write more
readable code. Instead of
OpenOptions::new().append(true).open("example.log")
,
you can write File::options().append(true).open("example.log")
. This
also avoids the need to import OpenOptions
.
See the OpenOptions::new
function for more details.
§Examples
use std::fs::File;
use std::io::Write;
fn main() -> std::io::Result<()> {
let mut f = File::options().append(true).open("example.log")?;
writeln!(&mut f, "new line")?;
Ok(())
}
1.0.0 · Sourcepub fn sync_all(&self) -> Result<(), Error> ⓘ
pub fn sync_all(&self) -> Result<(), Error> ⓘ
Attempts to sync all OS-internal file content and metadata to disk.
This function will attempt to ensure that all in-memory data reaches the filesystem before returning.
This can be used to handle errors that would otherwise only be caught
when the File
is closed, as dropping a File
will ignore all errors.
Note, however, that sync_all
is generally more expensive than closing
a file by dropping it, because the latter is not required to block until
the data has been written to the filesystem.
If synchronizing the metadata is not required, use sync_data
instead.
§Examples
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.write_all(b"Hello, world!")?;
f.sync_all()?;
Ok(())
}
1.0.0 · Sourcepub fn sync_data(&self) -> Result<(), Error> ⓘ
pub fn sync_data(&self) -> Result<(), Error> ⓘ
This function is similar to sync_all
, except that it might not
synchronize file metadata to the filesystem.
This is intended for use cases that must synchronize content, but don’t need the metadata on disk. The goal of this method is to reduce disk operations.
Note that some platforms may simply implement this in terms of
sync_all
.
§Examples
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.write_all(b"Hello, world!")?;
f.sync_data()?;
Ok(())
}
Sourcepub fn lock(&self) -> Result<(), Error> ⓘ
🔬This is a nightly-only experimental API. (file_lock
)
pub fn lock(&self) -> Result<(), Error> ⓘ
file_lock
)Acquire an exclusive advisory lock on the file. Blocks until the lock can be acquired.
This acquires an exclusive advisory lock; no other file handle to this file may acquire another lock.
If this file handle, or a clone of it, already holds an advisory lock the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then an exclusive lock is held.
If the file not open for writing, it is unspecified whether this function returns an error.
Note, this is an advisory lock meant to interact with lock_shared
, try_lock
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_EX
flag,
and the LockFileEx
function on Windows with the LOCKFILE_EXCLUSIVE_LOCK
flag. Note that,
this may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock()?;
Ok(())
}
🔬This is a nightly-only experimental API. (file_lock
)
file_lock
)Acquire a shared advisory lock on the file. Blocks until the lock can be acquired.
This acquires a shared advisory lock; more than one file handle may hold a shared lock, but none may hold an exclusive lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then a shared lock is held.
Note, this is an advisory lock meant to interact with lock
, try_lock
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_SH
flag,
and the LockFileEx
function on Windows. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock_shared()?;
Ok(())
}
Sourcepub fn try_lock(&self) -> Result<bool, Error> ⓘ
🔬This is a nightly-only experimental API. (file_lock
)
pub fn try_lock(&self) -> Result<bool, Error> ⓘ
file_lock
)Acquire an exclusive advisory lock on the file. Returns Ok(false)
if the file is locked.
This acquires an exclusive advisory lock; no other file handle to this file may acquire another lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then an exclusive lock is held.
If the file not open for writing, it is unspecified whether this function returns an error.
Note, this is an advisory lock meant to interact with lock
, lock_shared
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_EX
and
LOCK_NB
flags, and the LockFileEx
function on Windows with the LOCKFILE_EXCLUSIVE_LOCK
and LOCKFILE_FAIL_IMMEDIATELY
flags. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.try_lock()?;
Ok(())
}
🔬This is a nightly-only experimental API. (file_lock
)
file_lock
)Acquire a shared advisory lock on the file.
Returns Ok(false)
if the file is exclusively locked.
This acquires a shared advisory lock; more than one file handle may hold a shared lock, but none may hold an exclusive lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then a shared lock is held.
Note, this is an advisory lock meant to interact with lock
, try_lock
,
try_lock
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_SH
and
LOCK_NB
flags, and the LockFileEx
function on Windows with the
LOCKFILE_FAIL_IMMEDIATELY
flag. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.try_lock_shared()?;
Ok(())
}
Sourcepub fn unlock(&self) -> Result<(), Error> ⓘ
🔬This is a nightly-only experimental API. (file_lock
)
pub fn unlock(&self) -> Result<(), Error> ⓘ
file_lock
)Release all locks on the file.
All remaining locks are released when the file handle, and all clones of it, are dropped.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_UN
flag,
and the UnlockFile
function on Windows. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock()?;
f.unlock()?;
Ok(())
}
1.0.0 · Sourcepub fn set_len(&self, size: u64) -> Result<(), Error> ⓘ
pub fn set_len(&self, size: u64) -> Result<(), Error> ⓘ
Truncates or extends the underlying file, updating the size of
this file to become size
.
If the size
is less than the current file’s size, then the file will
be shrunk. If it is greater than the current file’s size, then the file
will be extended to size
and have all of the intermediate data filled
in with 0s.
The file’s cursor isn’t changed. In particular, if the cursor was at the end and the file is shrunk using this operation, the cursor will now be past the end.
§Errors
This function will return an error if the file is not opened for writing.
Also, std::io::ErrorKind::InvalidInput
will be returned if the desired length would cause an overflow due to
the implementation specifics.
§Examples
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.set_len(10)?;
Ok(())
}
Note that this method alters the content of the underlying file, even
though it takes &self
rather than &mut self
.
1.0.0 · Sourcepub fn metadata(&self) -> Result<Metadata, Error> ⓘ
pub fn metadata(&self) -> Result<Metadata, Error> ⓘ
Queries metadata about the underlying file.
§Examples
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut f = File::open("foo.txt")?;
let metadata = f.metadata()?;
Ok(())
}
1.9.0 · Sourcepub fn try_clone(&self) -> Result<File, Error> ⓘ
pub fn try_clone(&self) -> Result<File, Error> ⓘ
Creates a new File
instance that shares the same underlying file handle
as the existing File
instance. Reads, writes, and seeks will affect
both File
instances simultaneously.
§Examples
Creates two handles for a file named foo.txt
:
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut file = File::open("foo.txt")?;
let file_copy = file.try_clone()?;
Ok(())
}
Assuming there’s a file named foo.txt
with contents abcdef\n
, create
two handles, seek one of them, and read the remaining bytes from the
other handle:
use std::fs::File;
use std::io::SeekFrom;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut file = File::open("foo.txt")?;
let mut file_copy = file.try_clone()?;
file.seek(SeekFrom::Start(3))?;
let mut contents = vec![];
file_copy.read_to_end(&mut contents)?;
assert_eq!(contents, b"def\n");
Ok(())
}
1.16.0 · Sourcepub fn set_permissions(&self, perm: Permissions) -> Result<(), Error> ⓘ
pub fn set_permissions(&self, perm: Permissions) -> Result<(), Error> ⓘ
Changes the permissions on the underlying file.
§Platform-specific behavior
This function currently corresponds to the fchmod
function on Unix and
the SetFileInformationByHandle
function on Windows. Note that, this
may change in the future.
§Errors
This function will return an error if the user lacks permission change attributes on the underlying file. It may also return an error in other os-specific unspecified cases.
§Examples
fn main() -> std::io::Result<()> {
use std::fs::File;
let file = File::open("foo.txt")?;
let mut perms = file.metadata()?.permissions();
perms.set_readonly(true);
file.set_permissions(perms)?;
Ok(())
}
Note that this method alters the permissions of the underlying file,
even though it takes &self
rather than &mut self
.
1.75.0 · Sourcepub fn set_times(&self, times: FileTimes) -> Result<(), Error> ⓘ
pub fn set_times(&self, times: FileTimes) -> Result<(), Error> ⓘ
Changes the timestamps of the underlying file.
§Platform-specific behavior
This function currently corresponds to the futimens
function on Unix (falling back to
futimes
on macOS before 10.13) and the SetFileTime
function on Windows. Note that this
may change in the future.
§Errors
This function will return an error if the user lacks permission to change timestamps on the underlying file. It may also return an error in other os-specific unspecified cases.
This function may return an error if the operating system lacks support to change one or
more of the timestamps set in the FileTimes
structure.
§Examples
fn main() -> std::io::Result<()> {
use std::fs::{self, File, FileTimes};
let src = fs::metadata("src")?;
let dest = File::options().write(true).open("dest")?;
let times = FileTimes::new()
.set_accessed(src.accessed()?)
.set_modified(src.modified()?);
dest.set_times(times)?;
Ok(())
}
1.75.0 · Sourcepub fn set_modified(&self, time: SystemTime) -> Result<(), Error> ⓘ
pub fn set_modified(&self, time: SystemTime) -> Result<(), Error> ⓘ
Changes the modification time of the underlying file.
This is an alias for set_times(FileTimes::new().set_modified(time))
.
Trait Implementations§
1.63.0 · Source§impl AsFd for File
impl AsFd for File
Source§fn as_fd(&self) -> BorrowedFd<'_>
fn as_fd(&self) -> BorrowedFd<'_>
1.15.0 · Source§impl FileExt for File
impl FileExt for File
Source§fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<usize, Error> ⓘ
fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<usize, Error> ⓘ
Source§fn read_vectored_at(
&self,
bufs: &mut [IoSliceMut<'_>],
offset: u64,
) -> Result<usize, Error> ⓘ
fn read_vectored_at( &self, bufs: &mut [IoSliceMut<'_>], offset: u64, ) -> Result<usize, Error> ⓘ
unix_file_vectored_at
)read_at
, except that it reads into a slice of buffers. Read moreSource§fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize, Error> ⓘ
fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize, Error> ⓘ
Source§fn write_vectored_at(
&self,
bufs: &[IoSlice<'_>],
offset: u64,
) -> Result<usize, Error> ⓘ
fn write_vectored_at( &self, bufs: &[IoSlice<'_>], offset: u64, ) -> Result<usize, Error> ⓘ
unix_file_vectored_at
)write_at
, except that it writes from a slice of buffers. Read more1.20.0 · Source§impl From<File> for Stdio
impl From<File> for Stdio
Source§fn from(file: File) -> Stdio
fn from(file: File) -> Stdio
§Examples
File
will be converted to Stdio
using Stdio::from
under the hood.
use std::fs::File;
use std::process::Command;
// With the `foo.txt` file containing "Hello, world!"
let file = File::open("foo.txt")?;
let reverse = Command::new("rev")
.stdin(file) // Implicit File conversion into a Stdio
.output()?;
assert_eq!(reverse.stdout, b"!dlrow ,olleH");
1.70.0 · Source§impl IsTerminal for File
impl IsTerminal for File
Source§fn is_terminal(&self) -> bool
fn is_terminal(&self) -> bool
true
if the descriptor/handle refers to a terminal/tty. Read more§impl MediaSource for File
impl MediaSource for File
§fn is_seekable(&self) -> bool
fn is_seekable(&self) -> bool
Returns if the std::io::File
backing the MediaSource
is seekable.
Note: This operation involves querying the underlying file descriptor for information and may be moderately expensive. Therefore it is recommended to cache this value if used often.
1.0.0 · Source§impl Read for &File
impl Read for &File
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> ⓘ
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> ⓘ
Reads some bytes from the file.
See Read::read
docs for more info.
§Platform-specific behavior
This function currently corresponds to the read
function on Unix and
the NtReadFile
function on Windows. Note that this may change in
the future.
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error> ⓘ
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error> ⓘ
Like read
, except that it reads into a slice of buffers.
See Read::read_vectored
docs for more info.
§Platform-specific behavior
This function currently corresponds to the readv
function on Unix and
falls back to the read
implementation on Windows. Note that this
may change in the future.
Source§fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (can_vector
)
fn is_read_vectored(&self) -> bool
can_vector
)Determines if File
has an efficient read_vectored
implementation.
See Read::is_read_vectored
docs for more info.
§Platform-specific behavior
This function currently returns true
on Unix an false
on Windows.
Note that this may change in the future.
Source§fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
read_buf
)Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error> ⓘ
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error> ⓘ
buf
. Read moreSource§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error> ⓘ
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error> ⓘ
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error> ⓘ
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error> ⓘ
buf
. Read moreSource§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
read_buf
)cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read more1.0.0 · Source§impl Read for File
impl Read for File
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> ⓘ
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> ⓘ
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error> ⓘ
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error> ⓘ
read
, except that it reads into a slice of buffers. Read moreSource§fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
read_buf
)Source§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector
)Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error> ⓘ
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error> ⓘ
buf
. Read moreSource§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error> ⓘ
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error> ⓘ
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error> ⓘ
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error> ⓘ
buf
. Read moreSource§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error> ⓘ
read_buf
)cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read more1.0.0 · Source§impl Seek for &File
impl Seek for &File
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error> ⓘ
fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error> ⓘ
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error> ⓘ
fn rewind(&mut self) -> Result<(), Error> ⓘ
Source§fn stream_len(&mut self) -> Result<u64, Error> ⓘ
fn stream_len(&mut self) -> Result<u64, Error> ⓘ
seek_stream_len
)1.0.0 · Source§impl Seek for File
impl Seek for File
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error> ⓘ
fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error> ⓘ
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error> ⓘ
fn rewind(&mut self) -> Result<(), Error> ⓘ
Source§fn stream_len(&mut self) -> Result<u64, Error> ⓘ
fn stream_len(&mut self) -> Result<u64, Error> ⓘ
seek_stream_len
)1.0.0 · Source§impl Write for &File
impl Write for &File
Source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error> ⓘ
fn write(&mut self, buf: &[u8]) -> Result<usize, Error> ⓘ
Writes some bytes to the file.
See Write::write
docs for more info.
§Platform-specific behavior
This function currently corresponds to the write
function on Unix and
the NtWriteFile
function on Windows. Note that this may change in
the future.
Source§fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error> ⓘ
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error> ⓘ
Like write
, except that it writes into a slice of buffers.
See Write::write_vectored
docs for more info.
§Platform-specific behavior
This function currently corresponds to the writev
function on Unix
and falls back to the write
implementation on Windows. Note that this
may change in the future.
Source§fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (can_vector
)
fn is_write_vectored(&self) -> bool
can_vector
)Determines if File
has an efficient write_vectored
implementation.
See Write::is_write_vectored
docs for more info.
§Platform-specific behavior
This function currently returns true
on Unix an false
on Windows.
Note that this may change in the future.
Source§fn flush(&mut self) -> Result<(), Error> ⓘ
fn flush(&mut self) -> Result<(), Error> ⓘ
Flushes the file, ensuring that all intermediately buffered contents reach their destination.
See Write::flush
docs for more info.
§Platform-specific behavior
Since a File
structure doesn’t contain any buffers, this function is
currently a no-op on Unix and Windows. Note that this may change in
the future.
1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error> ⓘ
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error> ⓘ
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error> ⓘ
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error> ⓘ
write_all_vectored
)1.0.0 · Source§impl Write for File
impl Write for File
Source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error> ⓘ
fn write(&mut self, buf: &[u8]) -> Result<usize, Error> ⓘ
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)Source§fn flush(&mut self) -> Result<(), Error> ⓘ
fn flush(&mut self) -> Result<(), Error> ⓘ
1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error> ⓘ
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error> ⓘ
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error> ⓘ
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error> ⓘ
write_all_vectored
)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> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
§impl<T> ExecutableCommand for T
impl<T> ExecutableCommand for T
§fn execute(&mut self, command: impl Command) -> Result<&mut T, Error> ⓘ
fn execute(&mut self, command: impl Command) -> Result<&mut T, Error> ⓘ
Executes the given command directly.
The given command its ANSI escape code will be written and flushed onto Self
.
§Arguments
-
The command that you want to execute directly.
§Example
use std::io;
use crossterm::{ExecutableCommand, style::Print};
fn main() -> io::Result<()> {
// will be executed directly
io::stdout()
.execute(Print("sum:\n".to_string()))?
.execute(Print(format!("1 + 1= {} ", 1 + 1)))?;
Ok(())
// ==== Output ====
// sum:
// 1 + 1 = 2
}
Have a look over at the Command API for more details.
§Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer
. Therefore, there is no difference between execute and queue for those old Windows versions.
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out
indicating that a T
is niched.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> QueueableCommand for T
impl<T> QueueableCommand for T
§fn queue(&mut self, command: impl Command) -> Result<&mut T, Error> ⓘ
fn queue(&mut self, command: impl Command) -> Result<&mut T, Error> ⓘ
Queues the given command for further execution.
Queued commands will be executed in the following cases:
- When
flush
is called manually on the given type implementingio::Write
. - The terminal will
flush
automatically if the buffer is full. - Each line is flushed in case of
stdout
, because it is line buffered.
§Arguments
-
The command that you want to queue for later execution.
§Examples
use std::io::{self, Write};
use crossterm::{QueueableCommand, style::Print};
fn main() -> io::Result<()> {
let mut stdout = io::stdout();
// `Print` will executed executed when `flush` is called.
stdout
.queue(Print("foo 1\n".to_string()))?
.queue(Print("foo 2".to_string()))?;
// some other code (no execution happening here) ...
// when calling `flush` on `stdout`, all commands will be written to the stdout and therefore executed.
stdout.flush()?;
Ok(())
// ==== Output ====
// foo 1
// foo 2
}
Have a look over at the Command API for more details.
§Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer
. Therefore, there is no difference between execute and queue for those old Windows versions.
§impl<W> SynchronizedUpdate for W
impl<W> SynchronizedUpdate for W
§fn sync_update<T>(
&mut self,
operations: impl FnOnce(&mut W) -> T,
) -> Result<T, Error> ⓘ
fn sync_update<T>( &mut self, operations: impl FnOnce(&mut W) -> T, ) -> Result<T, Error> ⓘ
Performs a set of actions within a synchronous update.
Updates will be suspended in the terminal, the function will be executed against self, updates will be resumed, and a flush will be performed.
§Arguments
-
Function
A function that performs the operations that must execute in a synchronized update.
§Examples
use std::io;
use crossterm::{ExecutableCommand, SynchronizedUpdate, style::Print};
fn main() -> io::Result<()> {
let mut stdout = io::stdout();
stdout.sync_update(|stdout| {
stdout.execute(Print("foo 1\n".to_string()))?;
stdout.execute(Print("foo 2".to_string()))?;
// The effects of the print command will not be present in the terminal
// buffer, but not visible in the terminal.
std::io::Result::Ok(())
})?;
// The effects of the commands will be visible.
Ok(())
// ==== Output ====
// foo 1
// foo 2
}
§Notes
This command is performed only using ANSI codes, and will do nothing on terminals that do not support ANSI codes, or this specific extension.
When rendering the screen of the terminal, the Emulator usually iterates through each visible grid cell and renders its current state. With applications updating the screen a at higher frequency this can cause tearing.
This mode attempts to mitigate that.
When the synchronization mode is enabled following render calls will keep rendering the last rendered state. The terminal Emulator keeps processing incoming text and sequences. When the synchronized update mode is disabled again the renderer may fetch the latest screen buffer state again, effectively avoiding the tearing effect by unintentionally rendering in the middle a of an application screen update.