Trait dinghy_lib::Platform
source · pub trait Platform: Debug {
fn build(&self, project: &Project, build_args: &BuildArgs) -> Result<Build>;
fn id(&self) -> String;
fn is_compatible_with(&self, device: &dyn Device) -> bool;
fn rustc_triple(&self) -> Option<&str>;
fn strip(&self, build: &Build) -> Result<()>;
}