Trait IntoFn

Source
pub trait IntoFn {
    // Required method
    fn into_fn(self) -> Result<(String, Option<String>)>;
}
Expand description

Converts a function into name and version parts

Required Methods§

Source

fn into_fn(self) -> Result<(String, Option<String>)>

Handles the conversion of the function string

Implementations on Foreign Types§

Source§

impl IntoFn for &str

Source§

impl IntoFn for &String

Source§

impl IntoFn for String

Implementors§