pub trait TargetTools {
    // Required methods
    fn wasm_bin_name(&self) -> String;
    fn bin_name(&self) -> String;
}

Required Methods§

source

fn wasm_bin_name(&self) -> String

Returns the name of the wasm binary - -> _ and add .wasm to the end

source

fn bin_name(&self) -> String

Returns the name of the binary with no extension - -> _

Implementations on Foreign Types§

source§

impl TargetTools for Target

Implementors§