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.
Required Associated Types§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".