pub trait InputAdapterSource<R>: Copy {
    type InputAdapter: InputAdapter<Value = R>;

    // Required method
    fn adapter(&self) -> Self::InputAdapter;
}

Required Associated Types§

Required Methods§

source

fn adapter(&self) -> Self::InputAdapter

Object Safety§

This trait is not object safe.

Implementors§