Skip to main content

api_beta

Attribute Macro api_beta 

Source
#[api_beta]
Expand description

标记 API 为测试版(Beta)。cargo doc 渲染 🧪 徽章。

§Example

use sz_orm_macros::api_beta;

#[api_beta]
pub fn where_eq_typed(&self, col: &str, val: TypedValue) { ... }