use std::marker::PhantomData;
pub struct FutureReader<T> {
_phantom: PhantomData<T>,
}
pub struct StreamReader<T> {
_phantom: PhantomData<T>,
}
pub struct ErrorContext {}
pub(crate) struct ResourcePair {
pub(crate) write: u32,
pub(crate) read: u32,
}