pub struct BundleAnalysis {
pub info: BuildInfo,
pub is_valid_wasm: bool,
pub sections: Vec<WasmSection>,
pub forbidden_found: Vec<String>,
}Expand description
Result of bundle analysis.
Fields§
§info: BuildInfoBuild info
is_valid_wasm: boolWhether file is valid WASM
sections: Vec<WasmSection>WASM sections found
forbidden_found: Vec<String>Forbidden patterns found
Implementations§
Trait Implementations§
Source§impl Clone for BundleAnalysis
impl Clone for BundleAnalysis
Source§impl Debug for BundleAnalysis
impl Debug for BundleAnalysis
Auto Trait Implementations§
impl Freeze for BundleAnalysis
impl RefUnwindSafe for BundleAnalysis
impl Send for BundleAnalysis
impl Sync for BundleAnalysis
impl Unpin for BundleAnalysis
impl UnsafeUnpin for BundleAnalysis
impl UnwindSafe for BundleAnalysis
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