[][src]Struct flv_future_aio::fs::MemoryMappedMutFile

pub struct MemoryMappedMutFile(_);

Mutable async wrapper for MmapMut

Implementations

impl MemoryMappedMutFile[src]

pub async fn create<'_>(
    m_path: &'_ Path,
    len: u64
) -> Result<(Self, File), IoError>
[src]

pub fn inner(&self) -> RwLockReadGuard<'_, MmapMut>[src]

pub fn inner_map(&self) -> Arc<RwLock<MmapMut>>[src]

pub fn mut_inner(&self) -> RwLockWriteGuard<'_, MmapMut>[src]

pub fn write_bytes(&mut self, pos: usize, bytes: &Vec<u8>)[src]

write bytes at location, return number bytes written

pub async fn flush_ft<'_>(&'_ self) -> Result<(), IoError>[src]

pub async fn flush_async_ft<'_>(&'_ self) -> Result<(), IoError>[src]

pub async fn flush_range_ft<'_>(
    &'_ self,
    offset: usize,
    len: usize
) -> Result<(), IoError>
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Error = Infallible

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.