pub trait IntoIndirectCallwhere
    Self: Sized,{
    type Item;

    // Required method
    fn into_indirect(self) -> Self::Item;
}

Required Associated Types§

Required Methods§

source

fn into_indirect(self) -> Self::Item

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoIndirectCall for Callee

source§

impl IntoIndirectCall for CallExpr

source§

impl IntoIndirectCall for TaggedTpl

§

type Item = TaggedTpl

source§

fn into_indirect(self) -> Self

Implementors§