Struct tokio_fs::file::OpenOptions [−][src]
pub struct OpenOptions(_);
Options and flags which can be used to configure how a file is opened.
This is a specialized version of std::fs::OpenOptions
for usage from
the Tokio runtime.
From<std::fs::OpenOptions>
is implemented for more advanced configuration
than the methods provided here.
Methods
impl OpenOptions
[src]
impl OpenOptions
pub fn new() -> OpenOptions
[src]
pub fn new() -> OpenOptions
Creates a blank new set of options ready for configuration.
All options are initially set to false
.
Examples
use tokio::fs::OpenOptions; let mut options = OpenOptions::new(); let future = options.read(true).open("foo.txt");
pub fn read(&mut self, read: bool) -> &mut OpenOptions
[src]
pub fn read(&mut self, read: bool) -> &mut OpenOptions
See the underlying read
call for details.
pub fn write(&mut self, write: bool) -> &mut OpenOptions
[src]
pub fn write(&mut self, write: bool) -> &mut OpenOptions
See the underlying write
call for details.
pub fn append(&mut self, append: bool) -> &mut OpenOptions
[src]
pub fn append(&mut self, append: bool) -> &mut OpenOptions
See the underlying append
call for details.
pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions
[src]
pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions
See the underlying truncate
call for details.
pub fn create(&mut self, create: bool) -> &mut OpenOptions
[src]
pub fn create(&mut self, create: bool) -> &mut OpenOptions
See the underlying create
call for details.
pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions
[src]
pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions
See the underlying create_new
call for details.
pub fn open<P>(&self, path: P) -> OpenFuture<P> where
P: AsRef<Path> + Send + 'static,
[src]
pub fn open<P>(&self, path: P) -> OpenFuture<P> where
P: AsRef<Path> + Send + 'static,
Trait Implementations
impl Clone for OpenOptions
[src]
impl Clone for OpenOptions
fn clone(&self) -> OpenOptions
[src]
fn clone(&self) -> OpenOptions
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for OpenOptions
[src]
impl Debug for OpenOptions
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<StdOpenOptions> for OpenOptions
[src]
impl From<StdOpenOptions> for OpenOptions
fn from(options: StdOpenOptions) -> OpenOptions
[src]
fn from(options: StdOpenOptions) -> OpenOptions
Performs the conversion.
Auto Trait Implementations
impl Send for OpenOptions
impl Send for OpenOptions
impl Sync for OpenOptions
impl Sync for OpenOptions