1个不稳定版本
0.0.1 | 2022年9月26日 |
---|
#115 在 #section
在 querun 中使用
9KB
73 代码行
querio
🚧 进行中,但希望有一个基本版本 🚧
基于结构的字符串构建器
🐠 在 Cargo.toml
中添加 querio 依赖
[dependencies]
querio = "0.0.1"
🦀 在 Rust 中使用/导入所有内容
use querio::*;
🦊 构建字符串
// runtime variables
#[derive(Strung,Intuple)]
struct VarStruct {
numb: u32,
strg: &'static str
}
// create builder
#[derive(Querio)]
#[querio(
// attach runtime variables, address with #{field_name}
variables(VarStruct),
// add compile time variables, address with <index>
sections("Test1","Test2"),
// the string those variables will be merged in
"#numb #strg <0> <1> <0>"
)] struct ABuilder {}
fn main(){
// use the builder with attached variables struct
let text = ABuilder::querio(&VarStruct{numb:10,strg:"RT"});
// => "10 RT Test1 Test2 Test1"
// OR use the variable structs tuple representation and ::qrio(..)
let text = ABuilder::qrio((10,"RT"));
// => "10 RT Test1 Test2 Test1"
}
许可证
根据您的选择,许可在 Apache许可证,版本2.0 或 MIT许可证 下。除非您明确表示,否则您有意提交以包含在此软件包中的任何贡献,根据Apache-2.0许可证定义,应作为上述双重许可,而无需任何附加条款或条件。
依赖项
~1.2–2MB
~43K SLoC