Enum littlefs::Whence

source ·
pub enum Whence {
    Set,
    Cur,
    End,
}
Expand description

Definition of starting location for seeking within a file.

  • Set - seeks from the beginning of the file.
  • Cur - seeks from the current position in the file
  • End - seeks from the end of the file.

Variants§

§

Set

§

Cur

§

End

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.