Trait tc_transact::fs::Block [−][src]
A transactional filesystem block.
Associated Types
Loading content...Required methods
#[must_use]fn read<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Self::ReadLock> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
[src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Self::ReadLock> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Get a read lock on this block.
#[must_use]fn write<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Self::WriteLock> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
[src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Self::WriteLock> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Get a write lock on this block.