Trait ArgIntoRef

Source
pub trait ArgIntoRef {
    type Target;

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

Required Associated Types§

Required Methods§

Source

fn to_ref(&self) -> &Self::Target

Implementations on Foreign Types§

Source§

impl ArgIntoRef for bool

Source§

type Target = bool

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for f32

Source§

type Target = f32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for f64

Source§

type Target = f64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for i8

Source§

type Target = i8

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for i16

Source§

type Target = i16

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for i32

Source§

type Target = i32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for i64

Source§

type Target = i64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for isize

Source§

type Target = isize

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for u8

Source§

type Target = u8

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for u16

Source§

type Target = u16

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for u32

Source§

type Target = u32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for u64

Source§

type Target = u64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl ArgIntoRef for usize

Source§

type Target = usize

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a bool

Source§

type Target = bool

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a f32

Source§

type Target = f32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a f64

Source§

type Target = f64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a i8

Source§

type Target = i8

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a i16

Source§

type Target = i16

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a i32

Source§

type Target = i32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a i64

Source§

type Target = i64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a isize

Source§

type Target = isize

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a u8

Source§

type Target = u8

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a u16

Source§

type Target = u16

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a u32

Source§

type Target = u32

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a u64

Source§

type Target = u64

Source§

fn to_ref(&self) -> &Self::Target

Source§

impl<'a> ArgIntoRef for &'a usize

Source§

type Target = usize

Source§

fn to_ref(&self) -> &Self::Target

Implementors§