serde_magnus converts between Rust and Ruby data structures using Serde and Magnus.
Quick links
The serde_magnus::serialize function converts from a Rust type implementing the
serde::Serialize trait into a Ruby equivalent.
use serde::{Serialize, Deserialize};
use magnus::{eval, Ruby, Value};
use serde_magnus::serialize;
#[derive(Serialize, Deserialize, PartialEq, Debug)]
struct Post {
title: String,
content: String,
author: Author,
tags: Vec<String>
}
#[derive(Serialize, Deserialize, PartialEq, Debug)]
struct Author {
name: String,
email_address: String
}
let post = Post {
title: "Spring carnival planning update".into(),
content: "Here's what's new.".into(),
author: Author {
name: "Martha".into(),
email_address: "[email protected]".into()
},
tags: vec![
"carnival".into(),
"update".into()
]
};
let ruby = Ruby::get().unwrap();
let post: Value = serialize(&ruby, &post)?;
assert!(eval!(
&ruby,
r#"
post == {
title: "Spring carnival planning update",
content: "Here's what's new.",
author: {
name: "Martha",
email_address: "[email protected]"
},
tags: ["carnival", "update"]
}
"#,
post
)?);serde_magnus::deserialize converts from a Ruby value to a Rust type implementing
serde::Deserialize.
use magnus::{RHash, Ruby};
use serde_magnus::deserialize;
let ruby = Ruby::get().unwrap();
let post: RHash = eval!(&ruby, r#"
{
title: "Spring carnival planning update",
content: "Here's what's new.",
author: {
name: "Martha",
email_address: "[email protected]"
},
tags: ["carnival", "update"]
}
"#)?;
let post: Post = deserialize(&ruby, post)?;
assert_eq!(
Post {
title: "Spring carnival planning update".into(),
content: "Here's what's new.".into(),
author: Author {
name: "Martha".into(),
email_address: "[email protected]".into(),
},
tags: vec![
"carnival".into(),
"update".into()
]
},
post
);serde_magnus requires Rust 1.65+ and Ruby 3.0+.
serde_magnus is released under the terms of the MIT License. See LICENSE for details.