rust-sen/sehn/src/utils/mod.rs
2019-01-21 13:25:44 +00:00

18 lines
417 B
Rust

mod buffer;
mod writer;
#[cfg(any(feature = "std", feature = "alloc"))]
use crate::se::*;
pub use self::writer::*;
pub use self::buffer::*;
#[cfg(any(feature = "std", feature = "alloc"))]
pub fn to_string<T>(value: T) -> Result<String, SerializerError<()>>
where T: Serialize
{
let mut w = GenericWriter::from(Vec::new());
let mut s = BaseSerializer::new(&mut w);
value.serialize(&mut s)?;
Ok(w.to_string())
}