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.
Auto Trait Implementations§
impl RefUnwindSafe for ShrinkInfo
impl Send for ShrinkInfo
impl Sync for ShrinkInfo
impl Unpin for ShrinkInfo
impl UnwindSafe for ShrinkInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more