wvb 0.2.0-next.68e19d2

Offline-first web resources delivery system for webview mounted frameworks/platforms
Documentation
1
2
3
4
5
6
7
8
pub trait Reader<T> {
  fn read(&mut self) -> crate::Result<T>;
}

#[cfg(feature = "async")]
pub trait AsyncReader<T> {
  fn read(&mut self) -> impl std::future::Future<Output = crate::Result<T>>;
}