These are the unsafe FFI bindings for gtk-layer-shell. They were automatically generated from its .gir file.
These are the unsafe bindings. You most likely want to use the safe wrapper.
Generating the bindings yourself is not necessary to be able to use it. If you want to do it anyways, here are the steps you can follow to generate the bindings yourself.
You need to have Rust, and Gtk3 installed. Clone the repository AND the submodule "gir".
bash
git clone --recurse-submodules -j8 https://github.com/pentamassiv/gtk-layer-shell-gir.git
cd ./gtk-layer-shell-gir
Then you need to install gir.
bash
cd gir
cargo install --path .
cd ..
If you regenerate the binding, because you have a new version of the GtkLayerShell gir file, copy it into the gir files folder.
Now you can generate, build and test the bindings.
bash
cd gtk-layer-shell/gtk-layer-shell-sys
gir -o . # Regenerate the bindings
cargo build --features v0_6 # Build the created bindings
cargo test --features v0_6 # Test the created bindings
cd ..
There should not have been any errors. You should now continue and generate the safe wrapper. If you want to learn more about gir, have a look at its repo or its book.
Pull requests are very welcome :)