pub trait PostRenderable {
type PostIn;
type PostOut;
// Provided method
fn post(
&mut self,
_representation: &Self::PostIn,
) -> Result<Self::PostOut, Error> { ... }
}
Expand description
Subset of TypeRenderable
that handles the POST method.