Trait MapToArg

Source
pub trait MapToArg<'b> {
    // Required method
    fn map_to_arg(self) -> Cow<'b, OsStr>;
}

Required Methods§

Source

fn map_to_arg(self) -> Cow<'b, OsStr>

Implementations on Foreign Types§

Source§

impl<'a: 'b, 'b, S> MapToArg<'b> for Cow<'a, S>
where S: ?Sized + ToOwned + AsRef<OsStr> + 'a, S::Owned: Into<OsString>,

Source§

fn map_to_arg(self) -> Cow<'b, OsStr>

Implementors§