arma-rs 1.12.1

Arma 3 Extensions in Rust
Documentation
use arma_rs::{FromArma, FromArmaError, IntoArma, Value};

#[derive(IntoArma)]
struct CustomFrom(u32);

impl FromArma for CustomFrom {
    fn from_arma(_: String) -> Result<Self, FromArmaError> {
        todo!()
    }
}

#[derive(FromArma)]
struct CustomInto(u32);

impl IntoArma for CustomInto {
    fn to_arma(&self) -> Value {
        todo!()
    }
}

fn main() {}