Home
last modified time | relevance | path

Searched refs:ByteCountNotAligned (Results 1 – 1 of 1) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dbyte_count.rs21 pub fn new(bytes: usize) -> Result<Self, ByteCountNotAligned> { in new() argument
26 Err(ByteCountNotAligned(bytes)) in new()
224 pub struct ByteCountNotAligned(usize); struct
226 impl fmt::Display for ByteCountNotAligned { implementation
236 impl core::error::Error for ByteCountNotAligned {} implementation