[−][src]Struct wasi_common::fs::OpenOptions
Options and flags which can be used to configure how a file is opened.
This corresponds to std::fs::OpenOptions
.
Note that this OpenOptions
has no open
method. To open a file with
an OptionOptions
, you must first obtain a Dir
containing the file, and
then call Dir::open_file_with
.
Methods
impl OpenOptions
[src]
pub fn new() -> Self
[src]
Creates a blank new set of options ready for configuration.
This corresponds to std::fs::OpenOptions::new
.
pub fn read(&mut self, read: bool) -> &mut Self
[src]
Sets the option for read access.
This corresponds to std::fs::OpenOptions::read
.
pub fn write(&mut self, write: bool) -> &mut Self
[src]
Sets the option for write access.
This corresponds to std::fs::OpenOptions::write
.
pub fn append(&mut self, append: bool) -> &mut Self
[src]
Sets the option for the append mode.
This corresponds to std::fs::OpenOptions::append
.
pub fn truncate(&mut self, truncate: bool) -> &mut Self
[src]
Sets the option for truncating a previous file.
This corresponds to std::fs::OpenOptions::truncate
.
pub fn create(&mut self, create: bool) -> &mut Self
[src]
Sets the option to create a new file.
This corresponds to std::fs::OpenOptions::create
.
pub fn create_new(&mut self, create_new: bool) -> &mut Self
[src]
Sets the option to always create a new file.
This corresponds to std::fs::OpenOptions::create_new
.
Auto Trait Implementations
impl RefUnwindSafe for OpenOptions
impl Send for OpenOptions
impl Sync for OpenOptions
impl Unpin for OpenOptions
impl UnwindSafe for OpenOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointee for T
[src]
type Pointer = u32
fn debug(
pointer: <T as Pointee>::Pointer,
f: &mut Formatter
) -> Result<(), Error>
[src]
pointer: <T as Pointee>::Pointer,
f: &mut Formatter
) -> Result<(), Error>
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,