[][src]Trait call_by::CallBy

pub trait CallBy<'a, Convention: CallingConvention> {
    type Type;
}

To get the type of T via calling convention Convention, write <T as CallBy<'a, Convention>>::Type.

Associated Types

type Type[src]

The type of Self when called by Convention.

Loading content...

Implementors

impl<'a, T> CallBy<'a, Val> for T[src]

type Type = T

impl<'a, T: 'a> CallBy<'a, Mut> for T[src]

type Type = &'a mut T

impl<'a, T: 'a> CallBy<'a, Ref> for T[src]

type Type = &'a T

Loading content...