Trait os::fs::File

source · []
pub trait File: Send + Sync {
    fn readable(&self) -> bool;
    fn writable(&self) -> bool;
    fn read(&self, buf: UserBuffer) -> usize;
    fn write(&self, buf: UserBuffer) -> usize;
}
Expand description

File trait

Required methods

If readable

If writable

Read file to UserBuffer

Write UserBuffer to file

Implementors