You can generate glade bind with build script
```
[build-dependencies] glade-bindgen = "0.1" ```
```
fn main() {
gladebindgen::generatebindbuildscript("src/pathtogladefiles");
}
``
For example, if you have
example.gladeat
src/pathtogladefiles,
it will generate struct
pathtoglade_files::Example`
```
pub mod pathtoglade_files; //you need to include module
use pathtoglade_files::Example;
fn main() { let button: gtk::Button = &Example::get().yourbuttonid; //you can use editor's autocompletion here ^^^^^^^^^^^^ }