dtolnay / serde-yaml

Strongly typed YAML library for Rust
Apache License 2.0
965 stars 164 forks source link

Improve Debug representation of Error #296

Closed dtolnay closed 2 years ago

dtolnay commented 2 years ago

This matches the approach used for serde_json's errors, and is a good fit for the formatting that appears when .unwrap() is used.

Before:

UnknownAnchor(
    Mark {
        line: 1,
        column: 5,
    },
)

After:

Error("unknown anchor", line: 1, column: 5)