mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 05:08:19 +00:00
7 lines
133 B
Rust
7 lines
133 B
Rust
struct Pages(pub u32);
|
|
|
|
impl Pages {
|
|
fn checked_add(self, rhs: Self) -> Result<Pages, PageError>;
|
|
fn bytes(self) -> Bytes;
|
|
}
|