Struct io_at::BlockLimitWrite [] [src]

pub struct BlockLimitWrite<T: WriteAt> {
    // some fields omitted
}

Methods

impl<T: WriteAt> BlockLimitWrite<T>
[src]

fn new(v: T, max_per_block: usize) -> Self

Trait Implementations

impl<T: WriteAt + ReadAt> ReadAt for BlockLimitWrite<T>
[src]

fn read_at(&self, buf: &mut [u8], offs: u64) -> Result<usize>

impl<T: WriteAt> WriteAt for BlockLimitWrite<T>
[src]

fn write_at(&self, buf: &[u8], offs: u64) -> Result<usize>

fn write_all_at(&self, buf: &[u8], offs: u64) -> Result<()>

impl<T: WriteAt> Deref for BlockLimitWrite<T>
[src]

type Target = T

The resulting type after dereferencing

fn deref<'a>(&'a self) -> &'a T

The method called to dereference a value

impl<T: WriteAt> DerefMut for BlockLimitWrite<T>
[src]

fn deref_mut<'a>(&'a mut self) -> &'a mut T

The method called to mutably dereference a value