Guest User

Untitled

a guest
Aug 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. use serde_derive::Serialize;
  2.  
  3. #[derive(Serialize)]
  4. crate enum E {
  5. X,
  6. }
  7.  
  8. #[derive(Debug, Clone, Copy, Serialize)]
  9. #[repr(C)]
  10. pub struct Matrix4f32 {
  11. crate data: [f32; 16],
  12. }
  13.  
  14. fn main() {}
Add Comment
Please, Sign In to add comment