pretty arrays
This commit is contained in:
parent
27757113ec
commit
3ec47e6758
16
src/ser.rs
16
src/ser.rs
|
@ -142,6 +142,7 @@ pub enum Error {
|
||||||
#[derive(Debug, Default, Clone)]
|
#[derive(Debug, Default, Clone)]
|
||||||
pub struct ArraySettings {
|
pub struct ArraySettings {
|
||||||
indent: u64,
|
indent: u64,
|
||||||
|
trailing_comma: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Formatting Settings
|
/// Formatting Settings
|
||||||
|
@ -224,6 +225,7 @@ impl<'a> Serializer<'a> {
|
||||||
settings: Settings {
|
settings: Settings {
|
||||||
array: Some(ArraySettings {
|
array: Some(ArraySettings {
|
||||||
indent: 4,
|
indent: 4,
|
||||||
|
trailing_comma: true,
|
||||||
}),
|
}),
|
||||||
pretty_string: true,
|
pretty_string: true,
|
||||||
},
|
},
|
||||||
|
@ -667,10 +669,16 @@ impl<'a, 'b> ser::SerializeSeq for SerializeSeq<'a, 'b> {
|
||||||
match self.type_.get() {
|
match self.type_.get() {
|
||||||
Some("table") => return Ok(()),
|
Some("table") => return Ok(()),
|
||||||
Some(_) => {
|
Some(_) => {
|
||||||
if self.ser.settings.array.is_some() {
|
match self.ser.settings.array {
|
||||||
self.ser.dst.push_str("\n]");
|
Some(ref a) => {
|
||||||
} else {
|
if a.trailing_comma {
|
||||||
self.ser.dst.push_str("]");
|
self.ser.dst.push_str(",");
|
||||||
|
}
|
||||||
|
self.ser.dst.push_str("\n]");
|
||||||
|
},
|
||||||
|
None => {
|
||||||
|
self.ser.dst.push_str("]");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
|
|
@ -5,6 +5,10 @@ use serde::ser::Serialize;
|
||||||
|
|
||||||
const EXAMPLE: &str = "\
|
const EXAMPLE: &str = "\
|
||||||
[example]
|
[example]
|
||||||
|
array = [
|
||||||
|
\"item 1\",
|
||||||
|
\"item 2\",
|
||||||
|
]
|
||||||
text = '''
|
text = '''
|
||||||
this is the first line
|
this is the first line
|
||||||
this is the second line
|
this is the second line
|
||||||
|
@ -16,5 +20,7 @@ fn test_pretty() {
|
||||||
let value: toml::Value = toml::from_str(EXAMPLE).unwrap();
|
let value: toml::Value = toml::from_str(EXAMPLE).unwrap();
|
||||||
let mut result = String::with_capacity(128);
|
let mut result = String::with_capacity(128);
|
||||||
value.serialize(&mut toml::Serializer::pretty(&mut result)).unwrap();
|
value.serialize(&mut toml::Serializer::pretty(&mut result)).unwrap();
|
||||||
|
println!("example:\n{}", EXAMPLE);
|
||||||
|
println!("result:\n{}", result);
|
||||||
assert_eq!(EXAMPLE, &result);
|
assert_eq!(EXAMPLE, &result);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue