1948: doc: Fix links r=Hywan a=Hywan
# Description
Since the `intra-doc-links` feature has been stabilized, we can see more clearly that we have many broken links. This PR is an attempt to fix them!
# Review
- [ ] Add a short description of the the change to the CHANGELOG.md file
Co-authored-by: Ivan Enderlin <ivan@mnt.io>
This is required to do something like
```rust
use wasmer::{Cranelift, CraneliftOptLevel};
let mut compiler = Cranelift::default();
compiler.opt_level(CraneliftOptLevel::None);
let engine = JIT::new(compiler).engine();
// ...
```
1924: Export wasmer::{BaseTunables, Tunables} r=Hywan a=webmaster128
Closes#1872
ping @Hywan
# Review
- [x] Add a short description of the the change to the CHANGELOG.md file
1934: Point to `native` versions of functions in Function docs r=Hywan a=MarkMcCaskey
It's not obvious from looking at the docs for `Function` that there are native variants. This PR makes it clear that when users are figuring out how to make functions that they're shown the `native` variants.
Co-authored-by: Simon Warta <simon@warta.it>
Co-authored-by: Mark McCaskey <mark@wasmer.io>
1929: fix(vm) Update doc', clarify type fields etc. r=Hywan a=Hywan
# Description
Sequel of https://github.com/wasmerio/wasmer/pull/1902. This PR updates the documentation, rename some variables, and clarify some type fields.
# Review
- ~[ ] Add a short description of the the change to the CHANGELOG.md file~ not necessary I guess
Co-authored-by: Ivan Enderlin <ivan@mnt.io>
1896: Improve Wasmer API intro docs r=MarkMcCaskey a=MarkMcCaskey
Setting up our core docs to be easily accessible by new users.
Still a work in progress, but we should be able to ship these doc improvements to master at any time.
Here's what it looks like:

# Review
- [ ] Add a short description of the the change to the CHANGELOG.md file
Co-authored-by: Mark McCaskey <mark@wasmer.io>