wvb 0.2.0-next.fe10f84

Offline-first web resources delivery system for webview mounted frameworks/platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// How a bundle's integrity metadata is treated when the integrity check runs.
#[derive(PartialEq, Eq, Default, Clone, Copy, Debug)]
pub enum IntegrityPolicy {
  /// Integrity metadata is required: a bundle without it fails the check.
  Strict,
  /// Integrity metadata is checked when present and tolerated when missing.
  #[default]
  Optional,
  /// The integrity check is disabled.
  Off,
}