Closed
Description
/// Does something badly.
#[deprecated="use `fixed`"]
pub fn broken() { .. }
/// Does something well.
#[stable]
pub fn fixed() { .. }
Function broken
fn broken()
Stability: Deprecated[coloured red] use
fixed
Does something badly.
Function fixed
fn fixed()
Stability: Stable[coloured e.g. green]
Does something well.