[−][src]Struct fs_err::OpenOptions
Wrapper around std::fs::OptionOptions
Implementations
impl OpenOptions[src]
pub fn new() -> Self[src]
Wrapper for std::fs::OpenOptions::new
pub fn read(&mut self, read: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::read
pub fn write(&mut self, write: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::write
pub fn append(&mut self, append: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::append
pub fn truncate(&mut self, truncate: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::truncate
pub fn create(&mut self, create: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::create
pub fn create_new(&mut self, create_new: bool) -> &mut Self[src]
Wrapper for std::fs::OpenOptions::create_new
pub fn open<P>(&self, path: P) -> Result<File> where
P: Into<PathBuf>, [src]
P: Into<PathBuf>,
Wrapper for std::fs::OpenOptions::open
impl OpenOptions[src]
Methods added by fs-err that are not available on
std::fs::OpenOptions.
pub fn from_options(options: OpenOptions) -> Self[src]
Constructs Self from std::fs::OpenOptions
pub fn options(&self) -> &OpenOptions[src]
Returns a reference to the underlying std::fs::OpenOptions.
Note that calling open() on this reference will NOT give you the improved errors from fs-err.
pub fn options_mut(&mut self) -> &mut OpenOptions[src]
Returns a mutable reference to the underlying std::fs::OpenOptions.
This allows you to change settings that don't yet have wrappers in fs-err.
Note that calling open() on this reference will NOT give you the improved errors from fs-err.
Trait Implementations
impl Clone for OpenOptions[src]
fn clone(&self) -> OpenOptions[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for OpenOptions[src]
impl OpenOptionsExt for OpenOptions[src]
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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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>,