fn fmt_debug()

in pyo3_special_method_derive/src/lib.rs [136:141]


    fn fmt_debug(&self) -> String {
        match self {
            Some(x) => x.fmt_debug(),
            None => "None".to_string(),
        }
    }