condtype
Choose Rust types via boolean conditions, brought to you by Nikolai Vazquez.
If you find this crate useful, consider starring it as well as sponsoring or donating once. 💖
This crate enables choosing a type based on a compile-time constant, just like
std::conditional_t
in C++.
```rust use condtype::CondType;
let str: CondType
// Unsized types are also supported:
let str: &CondType This crate is available on crates.io and can be
used by running the following or by manually adding the following to your project's Like the Rust project, this library may be used under either the
MIT License or
Apache License (Version 2.0).Install
cargo
command in your project directory:sh
cargo add condtype
Cargo.toml
:toml
[dependencies]
condtype = "1.0.0"
License