bacon 3.23.0

background rust compiler
Documentation
1
2
3
4
5
6
7
8
9
pub trait Md {
    fn md(&self) -> String;
}

impl Md for &str {
    fn md(&self) -> String {
        (*self).to_string()
    }
}