Skip to main content

api_stable

Attribute Macro api_stable 

Source
#[api_stable]
Expand description

标记 API 为稳定(Stable)。cargo doc 渲染 ✅ 徽章。

§Example

use sz_orm_macros::api_stable;

#[api_stable]
pub fn build_select(&self) -> (String, Vec<Value>) { ... }