Expand description
Strut
Backend in Rust: convenient and configurable with Strut. 🏗️
- Strut is a Rust application scaffold that aims to simplify common backend chores.
- The documentation is available on the ➡️ homepage.
§Crate strut-deserialize
⚠️ Internal crate
Unless you know exactly what you are doing, there is probably no need to directly depend on this crate.
This crate contains deserialization utilities.
Structs§
- Slug
- An owned
String
slug that retains only ASCII alphanumeric characters and forces the retained characters to lowercase. - SlugMap
- An immutable
HashMap
that usesSlug
s as keys and allows efficiently searching for matching entries by string reference.
Enums§
- OneOr
Many - Represents a deserializable collection of
T
that may be also trivially deserialized from a single instance ofT
.