ToDataLoader

Trait ToDataLoader 

Source
pub trait ToDataLoader {
    type Output;

    // Required method
    fn to_dataloader(self) -> Self::Output;
}
Expand description

A trait defines conversion to DataLoader

Required Associated Types§

Source

type Output

the output type of the conversion

Required Methods§

Source

fn to_dataloader(self) -> Self::Output

convert to DataLoader

Implementors§