Struct wasm_shrink::ShrinkInfo
source · pub struct ShrinkInfo {
pub input_size: u64,
pub output_size: u64,
pub output: Vec<u8>,
}Expand description
Information about a completed shrinking run.
Fields§
§input_size: u64The original size of the input Wasm.
output_size: u64The final size of the output, shrunken Wasm.
output: Vec<u8>The final, shrunken Wasm.