pub trait GetRenderable { type Get; // Provided method fn get(&mut self) -> Result<Self::Get, Error> { ... } }
Subset of TypeRenderable that handles the GET method.
TypeRenderable
Output type of the get() method, serialized into the response payload.