Trait uu_env::native_int_str::Convert

source ·
pub trait Convert<From, To> {
    // Required method
    fn convert(f: From) -> To;
}

Required Methods§

source

fn convert(f: From) -> To

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a> Convert<&'a str, Cow<'a, [u16]>> for NCvt

source§

impl<'a> Convert<&'a String, Cow<'a, [u16]>> for NCvt

source§

impl<'a> Convert<&'a Vec<&'a str>, Vec<Cow<'a, [u16]>>> for NCvt

source§

impl<'a> Convert<&'a Vec<String>, Vec<Cow<'a, [u16]>>> for NCvt

source§

impl<'a> Convert<&'a OsStr, Cow<'a, [u16]>> for NCvt

source§

impl<'a> Convert<&'a OsString, Cow<'a, [u16]>> for NCvt

source§

impl<'a> Convert<String, Cow<'a, [u16]>> for NCvt

source§

impl<'a> Convert<Vec<&'a str>, Vec<Cow<'a, [u16]>>> for NCvt

source§

impl<'a> Convert<Vec<String>, Vec<Cow<'a, [u16]>>> for NCvt

source§

impl<'a> Convert<OsString, Cow<'a, [u16]>> for NCvt