pub trait ParseFetchInline<E: 'static + Clone>: ParseFetch<E> {
// Required method
fn parse_fetch_inline<I: PointInput<Extra: Fetch<T = E>>>(
input: &mut I,
) -> Result<Self>;
// Provided method
fn parse_fetch_as_inline<I: PointInput<Extra: Fetch<T = E>>>(
input: I,
) -> Result<Self> { ... }
}Required Methods§
fn parse_fetch_inline<I: PointInput<Extra: Fetch<T = E>>>( input: &mut I, ) -> Result<Self>
Provided Methods§
fn parse_fetch_as_inline<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".