pub trait GetInputTypeRef {
    type Output: Into<TypeRef>;

    fn get_input_type_ref() -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<T: GetInputTypeRef<Output = TypeRefInner>> GetInputTypeRef for Option<T>

§

type Output = TypeRefInner

source§

fn get_input_type_ref() -> Self::Output

source§

impl<T: GetInputTypeRef<Output = TypeRefInner>> GetInputTypeRef for Vec<T>

§

type Output = TypeRefInner

source§

fn get_input_type_ref() -> Self::Output

source§

impl<T: GetInputTypeRef<Output = TypeRefInner>> GetInputTypeRef for &[T]

§

type Output = TypeRefInner

source§

fn get_input_type_ref() -> Self::Output

Implementors§

source§

impl<T: GetInputTypeRef<Output = TypeRefInner>> GetInputTypeRef for MaybeUndefined<T>

§

type Output = TypeRefInner

source§

impl<T: InputType> GetInputTypeRef for T

§

type Output = TypeRefInner