experimental/experimental.rs
1/// This is an experimental API.
2///
3/// The docbox will indicate the function is experimental. It will also appear semi-transparent on
4/// module lists.
5#[doc_item::docbox(
6 content = "<span class='emoji'>🔬</span> This is an experimental API.",
7 class = "unstable"
8)]
9#[doc_item::short_docbox(content = "Experimental", class = "unstable")]
10#[doc_item::semi_transparent]
11pub fn foo() {}