[][src]Struct uni_app::fs::File

pub struct File(_);

synchronous (native) / asynchronous (web) file API

Methods

impl File[src]

pub fn read_binary(&mut self) -> Result<Vec<u8>, IoError>[src]

Once the file has been loaded (see File::is_ready), returns the file content as Vec<u8>

pub fn read_text(&mut self) -> Result<String, IoError>[src]

Once the file has been loaded (see File::is_ready), returns the file content as a String

pub fn is_ready(&self) -> bool[src]

return true if the file has been loaded On native target, files are loaded synchronously. As soon as FileSystem::open returns, the file is ready. File::read_binary and File::read_text can be called immediately. On web target, files are loaded asynchronously. You have to poll File::is_ready until it returns true. Only then you can call File::read_binary or File::read_text.

Auto Trait Implementations

impl Send for File

impl Sync for File

impl Unpin for File

impl UnwindSafe for File

impl RefUnwindSafe for File

Blanket Implementations

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

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

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

type Error = !

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.

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

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

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

impl<T> Erased for T

impl<T> Downcast for T where
    T: Any