| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-10-12 | 805 Bytes | |
| v4.6.12 source code.tar.gz | 2025-10-12 | 456.5 kB | |
| v4.6.12 source code.zip | 2025-10-12 | 558.4 kB | |
| Totals: 3 Items | 1.0 MB | 0 | |
what changes?
-
impl [#591] for
:::rust #[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq)] struct MockTable { pub id: Option<String>, pub name: Option<String>, pub status: Option<i32> } crud!(MockTable{}); let r = MockTable::update_by_map(rb, &table, value!{"id":"1", "column": ["name", "status"]}).await; * impl
crud!for select target columns:::rust #[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq)] struct MockTable { pub id: Option<String>, pub name: Option<String>, pub status: Option<i32> } crud!(MockTable{}); let tables = MockTable::select_by_map(rb,value!{"id":"1", "column": ["id", "name"]}).await?;