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 OpenOptionspub fn new() -> OpenOptions[src]
pub fn new() -> OpenOptionsCreates 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 OpenOptionsSee the underlying read call for details.
pub fn write(&mut self, write: bool) -> &mut OpenOptions[src]
pub fn write(&mut self, write: bool) -> &mut OpenOptionsSee the underlying write call for details.
pub fn append(&mut self, append: bool) -> &mut OpenOptions[src]
pub fn append(&mut self, append: bool) -> &mut OpenOptionsSee the underlying append call for details.
pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions[src]
pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptionsSee the underlying truncate call for details.
pub fn create(&mut self, create: bool) -> &mut OpenOptions[src]
pub fn create(&mut self, create: bool) -> &mut OpenOptionsSee 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 OpenOptionsSee 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 OpenOptionsfn clone(&self) -> OpenOptions[src]
fn clone(&self) -> OpenOptionsReturns 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 OpenOptionsfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl From<OpenOptions> for OpenOptions[src]
impl From<OpenOptions> for OpenOptionsfn from(options: OpenOptions) -> OpenOptions[src]
fn from(options: OpenOptions) -> OpenOptionsPerforms the conversion.
Auto Trait Implementations
impl Send for OpenOptions
impl Send for OpenOptionsimpl Sync for OpenOptions
impl Sync for OpenOptions