Struct littlefs2::fs::OpenOptions[][src]

pub struct OpenOptions(_);

Options and flags which can be used to configure how a file is opened.

This builder exposes the ability to configure how a File is opened and what operations are permitted on the open file. The File::open and File::create methods are aliases for commonly used options using this builder.

Consider File::with_options() to avoid having to use OpenOptions.

Implementations

impl OpenOptions[src]

pub unsafe fn open<'a, 'b, S: Storage>(
    &self,
    fs: &'b Filesystem<'a, S>,
    alloc: &'b mut FileAllocation<S>,
    path: &Path
) -> Result<File<'a, 'b, S>>
[src]

Open the file with the options previously specified, keeping references.

unsafe since UB can arise if files are not closed (see below).

The alternative method open_and_then is suggested.

Note that:

  • files must be closed before going out of scope (they are stored in a linked list), closing removes them from there
  • since littlefs is supposed to be fail-safe, we can’t just close files in Drop and panic if something went wrong.

pub fn open_and_then<'a, R, S: Storage>(
    &self,
    fs: &Filesystem<'a, S>,
    path: &Path,
    f: impl FnOnce(&File<'a, '_, S>) -> Result<R>
) -> Result<R>
[src]

(Hopefully) safe abstraction around open.

pub fn new() -> Self[src]

pub fn read(&mut self, read: bool) -> &mut Self[src]

pub fn write(&mut self, write: bool) -> &mut Self[src]

pub fn append(&mut self, append: bool) -> &mut Self[src]

pub fn create(&mut self, create: bool) -> &mut Self[src]

pub fn create_new(&mut self, create_new: bool) -> &mut Self[src]

pub fn truncate(&mut self, truncate: bool) -> &mut Self[src]

Trait Implementations

impl Clone for OpenOptions[src]

impl Debug for OpenOptions[src]

impl Default for OpenOptions[src]

impl Eq for OpenOptions[src]

impl PartialEq<OpenOptions> for OpenOptions[src]

impl StructuralEq for OpenOptions[src]

impl StructuralPartialEq for OpenOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.