Amplifying Rust language capabilities: multiple generic trait implementations, type wrappers, derive macros.
A sample of what can be done with the macros: ```rust
pub enum Error { // You can specify multiple conversions with separate attributes #[from(::std::io::Error)] #[from(IoError)] /// Generic I/O error Io,
#[from]
// This produces error description referencing debug representation
// of the internal error type
/// Formatting error: {_0:}
Format(::std::fmt::Error),
#[from]
/// Some complex error, here are details: {details}
WithFields { details: ::std::str::Utf8Error },
#[display(LowerHex)]
MultipleFields {
// ...and you can also covert error type
#[from(IoErrorUnit)]
// rest of parameters must implement `Default`
io: IoError,
#[display(ToHex::to_hex)]
details: String,
},
} ```
See more in amplify_derive
crate README.
s!
for fast &str
-> String
conversionsmap!
& bmap!
for a rappid HashMap
and BTreeMap
creationset!
& bset!
for a rappid HashSet
and BTreeSet
creationlist!
for LinkedList
Library proposes generic implementation strategies, which allow multiple
generic trait implementations. See src/strategy.rs
mod for the details.
TODO: write description
Important: for now this library uses rust nightly version, to unlock most of Rust language power. This will change in the future with overall library maturation.
shell script
rustup install nightly
rustup default nightly
cargo build --all
cargo test