pub trait AndroidAbiProvider {
// Required method
fn android_abi(&self) -> AndroidAbi;
}Expand description
Provides the Android ABI required to build/package for a target.
Required Methods§
Sourcefn android_abi(&self) -> AndroidAbi
fn android_abi(&self) -> AndroidAbi
Return the device ABI used for building and packaging.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".