Struct object::read::read_cache::ReadCacheInternal
source · struct ReadCacheInternal<R: ReadCacheOps> {
read: R,
bufs: BTreeMap<(u64, u64), Box<[u8]>>,
strings: BTreeMap<(u64, u8), Box<[u8]>>,
len: Option<u64>,
}
Fields§
§read: R
§bufs: BTreeMap<(u64, u64), Box<[u8]>>
§strings: BTreeMap<(u64, u8), Box<[u8]>>
§len: Option<u64>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for ReadCacheInternal<R>where
R: Freeze,
impl<R> RefUnwindSafe for ReadCacheInternal<R>where
R: RefUnwindSafe,
impl<R> Send for ReadCacheInternal<R>where
R: Send,
impl<R> Sync for ReadCacheInternal<R>where
R: Sync,
impl<R> Unpin for ReadCacheInternal<R>where
R: Unpin,
impl<R> UnwindSafe for ReadCacheInternal<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more