Trait fs_err::os::windows::fs::FileExt[][src]

pub trait FileExt: Sealed {
    fn seek_read(&self, buf: &mut [u8], offset: u64) -> Result<usize>;
fn seek_write(&self, buf: &[u8], offset: u64) -> Result<usize>; }

Wrapper for std::os::windows::fs::FileExt.

The std traits might be extended in the future (See issue #49961). This trait is sealed and can not be implemented by other crates.

Required methods

fn seek_read(&self, buf: &mut [u8], offset: u64) -> Result<usize>[src]

Wrapper for FileExt::seek_read

fn seek_write(&self, buf: &[u8], offset: u64) -> Result<usize>[src]

Loading content...

Implementors

impl FileExt for File[src]

fn seek_read(&self, buf: &mut [u8], offset: u64) -> Result<usize>[src]

fn seek_write(&self, buf: &[u8], offset: u64) -> Result<usize>[src]

Loading content...