pub trait ParseFromWithThreeInputs<'a, I1, I2, I3>: Sized {
type Error;
// Required method
fn parse(
cur: &mut SliceReader<'a>,
i1: I1,
i2: I2,
i3: I3,
) -> Result<Self, Self::Error>;
}Expand description
Parse Self from the cursor with three immutable context arguments.
Required Associated Types§
Required Methods§
fn parse( cur: &mut SliceReader<'a>, i1: I1, i2: I2, i3: I3, ) -> Result<Self, Self::Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".