This commit is contained in:
2026-04-13 08:04:43 -03:00
parent 0486f2a285
commit 3a5a7a17a3
71 changed files with 9385 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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() {}