[−][src]Struct flv_future_aio::fs::MemoryMappedMutFile
Mutable async wrapper for MmapMut
Implementations
impl MemoryMappedMutFile[src]
pub async fn create<'_>(
m_path: &'_ Path,
len: u64
) -> Result<(Self, File), IoError>[src]
m_path: &'_ Path,
len: u64
) -> Result<(Self, File), IoError>
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]
&'_ self,
offset: usize,
len: usize
) -> Result<(), IoError>
Auto Trait Implementations
impl RefUnwindSafe for MemoryMappedMutFile
impl Send for MemoryMappedMutFile
impl Sync for MemoryMappedMutFile
impl Unpin for MemoryMappedMutFile
impl UnwindSafe for MemoryMappedMutFile
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,