pub trait UniversalCompilationProperties {
// Required methods
fn binary_type(&self) -> &str;
fn is_stripped(&self) -> bool;
fn compiler_runtime(&self, bytes: &[u8]) -> Option<String>;
}Expand description
Compilation properties we assess on every binary format we support.
Required Methods§
fn binary_type(&self) -> &str
fn is_stripped(&self) -> bool
fn compiler_runtime(&self, bytes: &[u8]) -> Option<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".