use dxr::{TryFromValue, TryToValue}; type Result = std::result::Result; #[derive(TryFromValue, TryToValue)] pub struct Array { array: [i32; 4], } fn main() {}