[][src]Trait feast::pass::Context

pub trait Context<'i>: Sized + Debug + 'i {
type Input: Input<'i>;
    fn input(&self) -> Self::Input;
}

Associated Types

type Input: Input<'i>

Loading content...

Required methods

fn input(&self) -> Self::Input

Loading content...

Implementors

impl<'p, T> Context<'p> for SlicePassContext<'p, T> where
    T: Token
[src]

type Input = SliceInput<'p, T>

Loading content...