pub trait ParseFetch<E: 'static + Clone>: Sized {
// Required method
fn parse_fetch<I: PointInput<Extra: Fetch<T = E>>>(input: I) -> Result<Self>;
}Required Methods§
fn parse_fetch<I: PointInput<Extra: Fetch<T = E>>>(input: I) -> Result<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".