pub trait IntoDocComment {
    // Required method
    fn into_doc_comment(self) -> Option<Cow<'static, str>>;
}Expand description
Helper that converts multiple different types into an Option<Cow<'static, str>>
pub trait IntoDocComment {
    // Required method
    fn into_doc_comment(self) -> Option<Cow<'static, str>>;
}Helper that converts multiple different types into an Option<Cow<'static, str>>