Trait IntoArgHolder

Source
pub trait IntoArgHolder {
    type Target;

    // Required method
    fn into_arg_holder(self) -> Self::Target;
}

Required Associated Types§

Required Methods§

Source

fn into_arg_holder(self) -> Self::Target

Implementations on Foreign Types§

Source§

impl IntoArgHolder for &str

Source§

impl IntoArgHolder for &[u8]

Source§

impl IntoArgHolder for bool

Source§

impl IntoArgHolder for f32

Source§

impl IntoArgHolder for f64

Source§

impl IntoArgHolder for i8

Source§

impl IntoArgHolder for i16

Source§

impl IntoArgHolder for i32

Source§

impl IntoArgHolder for i64

Source§

impl IntoArgHolder for isize

Source§

impl IntoArgHolder for u8

Source§

impl IntoArgHolder for u16

Source§

impl IntoArgHolder for u32

Source§

impl IntoArgHolder for u64

Source§

impl IntoArgHolder for usize

Source§

impl<'a> IntoArgHolder for &'a bool

Source§

impl<'a> IntoArgHolder for &'a f32

Source§

type Target = &'a f32

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a f64

Source§

type Target = &'a f64

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a i8

Source§

type Target = &'a i8

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a i16

Source§

type Target = &'a i16

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a i32

Source§

type Target = &'a i32

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a i64

Source§

type Target = &'a i64

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a isize

Source§

impl<'a> IntoArgHolder for &'a u8

Source§

type Target = &'a u8

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a u16

Source§

type Target = &'a u16

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a u32

Source§

type Target = &'a u32

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a u64

Source§

type Target = &'a u64

Source§

fn into_arg_holder(self) -> Self::Target

Source§

impl<'a> IntoArgHolder for &'a usize

Implementors§