Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
Send
andSync
are 2 thread-safty related marker traits in Rust.A type is
Send
if and only if it can be transferred across thread boundaries. A type isSync
if and only if&T
Handle Duplicated Keys in serde_yaml in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
The YAML specification does not forbid duplicated keys.
serde-yaml
ignores duplicated keys except the last one silently, by default. To overwrite this behavior, you have to define your own struct and use the tag serde_with::rust::maps_duplicate_key_is_error
Parse YAML in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
- The serde_yaml crate is the best tool for parsing YAML in Rust.
Char in Rust
Print Colored Text in Terminal in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Hands on yansi¶
Calling Rust from Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tools
Rust bindings for Python, including tools for creating native Python extension modules. Running and interacting with Python code from a Rust binary is also supported.
Build and publish …