mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 13:48:26 +00:00
8 lines
156 B
Rust
8 lines
156 B
Rust
struct Pages(pub u32);
|
|
|
|
impl Pages {
|
|
fn checked_add(self, rhs: Self) -> Option<Self>;
|
|
fn bytes(self) -> Bytes;
|
|
const fn max_values() -> Self;
|
|
}
|