airsim 0.2.0

an unofficial Airsim SDK written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "keyboard")]
pub mod keyboard;

use crate::airsim::CarControls;
use std::io::Result;

#[async_trait]
pub trait Car {
    async fn setup(&self) -> Result<()>;
    fn get_car_controls(&mut self) -> CarControls;
    async fn send_car_controls(&self, controls: CarControls) -> Result<()>;
}