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: u64
The original size of the input Wasm.
output_size: u64
The final size of the output, shrunken Wasm.
output: Vec<u8>
The final, shrunken Wasm.
Auto Trait Implementations§
impl Freeze for ShrinkInfo
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