pub trait FetchRenderable {
type FetchIn;
type FetchOut;
// Provided method
fn fetch(
&mut self,
_representation: &Self::FetchIn,
) -> Result<Self::FetchOut, Error> { ... }
}
Expand description
Subset of TypeRenderable
that handles the FETCH method.