百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
R

ron

> 数据库
开源

锈蚀对象符号法

4.0K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

锈蚀对象符号法

Rusty Object Notation

RON is a simple readable data serialization format that looks similar to Rust syntax. It's designed to support all of Serde's data model, so structs, enums, tuples, arrays, generic maps, ranges, and primitive values.

Example

GameConfig( // optional struct name
    window_size: (800, 600),
    window_title: "PAC-MAN",
    fullscreen: false,

    mouse_sensitivity: 1.4,
    key_bindings: {
        "up": Up,
        "down": Down,
        "left": Left,
        "right": Right,

        // Uncomment to enable WASD controls
        /*
        "W": Up,
        "S": Down,
        "A": Left,
        "D": Right,
        */
    },

    difficulty_options: (
        start_difficulty: Easy,
        adaptive: false,
    ),
)

RON syntax overview

  • Numbers: 42, 3.14, 0xFF, 0b0110
  • Strings: "Hello", "with\\escapes\n", r#"raw string, great for regex\."#
  • Byte Strings: b"Hello", b"with \x65\x73\x63\x61\x70\x65\x73\n", br#"raw, too"#
  • Booleans: true, false
  • Chars: 'e', '\n'
  • Optionals: Some("string"), Some(Some(1.34)), None
  • Tuples: ("abc", 1.23, true), ()
  • Lists: ["abc", "def"]
  • Structs: ( foo: 1.0, bar: ( baz: "I'm nested" ) )
  • Maps: { "arbitrary": "keys", "are": "allowed" }
  • Ranges: 3..5, -2.1..=7.3, ..-15, ..10.5, ..=13, ..

Note: Serde's data model represents fixed-size Rust arrays as tuple (instead of as list)

RON also supports several extensions, which are documented here.

Specification

RON's formal and complete grammar is available here.

There also is a very basic, work in progress specification available on the wiki page.

Why RON?

Example in JSON

{
   "materials": {
        "metal": {
            "reflectivity": 1.0
        },
        "plastic": {
            "reflectivity": 0.5
        }
   },
   "entities": [
        {
            "name": "hero",
            "material": "metal"
        },
        {
            "name": "monster",
            "material": "plastic"
        }
   ]
}

Same example in RON

Scene( // class name is optional
    materials: { // this is a map
        "metal": (
            reflectivity: 1.0,
        ),
        "plastic": (
            reflectivity: 0.5,
        ),
    },
    entities: [ // this is an array
        (
            name: "hero",
            material: "metal",
        ),
        (
            name: "monster",
            material: "plastic",
        ),
    ],
)

Note the following advantages of RON over JSON:

  • trailing commas allowed
  • single- and multi-line comments
  • field names aren't quoted, so it's less verbose
  • optional struct names improve readability
  • enums are supported (and less verbose than their JSON representation)

Quickstart

Cargo.toml

[dependencies]
ron = "0.12"
serde = { version = "1", features = ["derive"] }

main.rs

use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
struct MyStruct {
    boolean: bool,
    float: f32,
}

fn main() {
    let x: MyStruct = ron::from_str("(boolean: true, float: 1.23)").unwrap();

    println!("RON: {}", ron::to_string(&x).unwrap());

    println!("Pretty RON: {}", ron::ser::to_string_pretty(
        &x, ron::ser::PrettyConfig::default()).unwrap(),
    );
}

Tooling

Editor Plugin
IntelliJ intellij-ron
VS Code a5huynh/vscode-ron
Sublime Text RON
Atom language-ron
Vim ron-rs/ron.vim
EMACS emacs-ron
Multiple / LSP ron-lsp

Limitations

RON requires struct, enum, and variant names to be valid Rust identifiers and will reject invalid ones created by #[serde(rename = "...")] at serialization / deserialization time.

RON is not designed to be a fully self-describing format (unlike JSON) and is thus not guaranteed to work when deserialize_any is used instead of its typed alternatives. In particular, the following Serde attributes only have limited support:

  • #[serde(tag = "tag")], i.e. internally tagged enums [^serde-enum-hack]
  • #[serde(tag = "tag", content = "content")], i.e. adjacently tagged enums [^serde-enum-hack]
  • #[serde(untagged)], i.e. untagged enums [^serde-enum-hack]
  • #[serde(flatten)], i.e. flattening of structs into maps [^serde-flatten-hack]

While data structures with any of these attributes should generally roundtrip through RON, some restrictions apply [^serde-restrictions] and their textual representation may not always match your expectation:

  • ron only supports string keys inside maps flattened into structs
  • internally (or adjacently) tagged or untagged enum variants or #[serde(flatten)]ed fields must not contain:
    • struct names, e.g. by enabling the #[enable(explicit_struct_names)] extension or the PrettyConfig::struct_names setting
    • newtypes
    • zero-length arrays / tuples / tuple structs / structs / tuple variants / struct variants
      • Options with #[enable(implicit_some)] must not contain any of these or a unit, unit struct, or an untagged unit variant
    • externally tagged tuple variants with just one field (that are not newtype variants)
    • tuples or arrays or tuple structs with just one element are not supported inside newtype variants with #[enable(unwrap_variant_newtypes)] (including Some)
    • a ron::value::RawValue
  • untagged tuple / struct variants with no fields are not supported
  • untagged tuple variants with just one field (that are not newtype variants) are not supported when the #![enable(unwrap_variant_newtypes)] extension is enabled
  • serializing a ron::value::RawValue using a PrettyConfig may add leading and trailing whitespace and comments, which the ron::value::RawValue absorbs upon deserialization

Furthermore, serde imposes the following restrictions for data to roundtrip:

  • structs or struct variants that contain a #[serde(flatten)]ed field:
    • are only serialised as maps and deserialised from maps
    • must not contain duplicate fields / keys, e.g. where an inner-struct field matches an outer-struct or inner-struct field
    • must not contain more than one (within the super-struct of all flattened structs) #[serde(flatten)]ed map field, which collects all unknown fields
    • if they contain a #[serde(flatten)]ed map, they must not contain:
      • a struct that is not flattened itself but contains some flattened fields and is flattened into the outer struct (variant)
      • an untagged struct variant that contains some flattened fields
      • a flattened externally tagged newtype, tuple, or struct variant, flattened internally tagged unit, newtype, or struct variant, or any flattened adjacently tagged variant
      • a flattened tagged struct
  • internally (or adjacently) tagged or untagged enum variants or #[serde(flatten)]ed fields must not contain:
    • i128 or u128 values
  • internally tagged newtype variants and #[serde(flatten)]ed fields must not contain:
    • a unit or a unit struct inside an untagged newtype variant
    • an untagged unit variant
  • internally tagged newtype variants, which are #[serde(flatten)]ed together with other fields, must not contain:
    • a unit or unit struct or an untagged unit variant

While RON offers a best-effort implementation for #[serde(flatten)], it may be unsupported in further cases and combinations not listed above. These limitations stem primarily from serde rather than RON. Enumerating all such cases based on serde's behavior is nontrivial, so the lists above are not exhaustive.

Please file a new issue if you come across a use case which is not listed among the above restrictions but still breaks.

While RON guarantees roundtrips like Rust -> RON -> Rust for Rust types using non-deserialize_any-based implementations, RON does not yet make any guarantees about roundtrips through ron::Value. For instance, even when RON -> Rust works, RON -> ron::Value -> Rust, or RON -> ron::Value -> RON -> Rust may not work. We plan on improving ron::Value in an upcoming version of RON, though this work is partially blocked on serde#1183.

[^serde-enum-hack]: Deserialising an internally, adjacently, or un-tagged enum requires detecting serde's internal default buffer/content type so that RON can describe the deserialised data structure in serde's internal JSON-like format. A more robust implementation is blocked on serde#1183.

[^serde-flatten-hack]: Deserialising a flattened struct from a map requires that the struct's Visitor::expecting implementation formats a string starting with "struct ". This is the case for automatically-derived Deserialize impls on structs. See #455 for more details.

[^serde-restrictions]: Most of these restrictions are currently blocked on serde#1183, which limits non-self-describing formats from roundtripping format-specific information through internally (or adjacently) tagged or untagged enums or #[serde(flatten)]ed fields.

License

RON is dual-licensed under Apache-2.0 and MIT.

Any contribution intentionally submitted for inclusion in the work must be provided under the same dual-license terms.

Issues· 52 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Rustconfigsdata-formatrustserde

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类数据库
定价开源

> 相关工具

P
PostgreSQL
功能强大的开源关系型数据库
R
Redis
内存数据结构存储,常用作缓存与队列
M
MySQL
广泛使用的开源关系型数据库