Trait random_access_storage::SyncMethods [] [src]

pub trait SyncMethods {
    fn open(&self) -> Result<(), Error>;
fn write(&self, offset: u64, data: Vec<u8>) -> Result<(), Error>;
fn read(&self, offset: u64, length: u64) -> Result<Vec<u8>, Error>;
fn del(&self, offset: u64, length: u64) -> Result<(), Error>; }

Required Methods

Implementors