Hi all,
I'm creating a project which requires that I create WiFi hotspot on laptops, I've been looking for a way to achieve this, I'd appreciate a guide or sample project which implement this.
There is nothing Rust-specific about this task. It requires calling appropriate OS-specific APIs, so look up how to do that in general (or using C or C++), and then either find a Rust crate that has wrappers for the functions you need (like nix or windows-sys or core-foundation etc.) or use FFI to call required methods directly.