Trait radn::rcore::CInliningFactory
source · pub trait CInliningFactory<'a, Ctx: Context<'a>>: FactoryBase<'a> + ImplMode<Mode = InliningMode> {
// Required methods
fn cextension_error(&self, tail: &[u8]) -> Self::ParseError;
fn cideserialize<I: InCtx<'a, Ctx>>(
&self,
inctx: I
) -> IParseResult<'a, Self, I>;
}Expand description
For auto-deriving InliningFactory from concrete implementations.
Required Methods§
sourcefn cextension_error(&self, tail: &[u8]) -> Self::ParseError
fn cextension_error(&self, tail: &[u8]) -> Self::ParseError
Concrete implementation of InliningFactory::extension_error.
sourcefn cideserialize<I: InCtx<'a, Ctx>>(
&self,
inctx: I
) -> IParseResult<'a, Self, I>
fn cideserialize<I: InCtx<'a, Ctx>>( &self, inctx: I ) -> IParseResult<'a, Self, I>
Concrete implementation of InliningFactory::ideserialize.