combine::parser::combinator

Type Alias FnOpaque

Source
pub type FnOpaque<I, O, S = ()> = Opaque<fn(_: &mut dyn FnMut(&mut dyn Parser<Input = I, Output = O, PartialState = S>)), I, O, S>;
Expand description

Alias over Opaque where the function can be a plain function pointer (does not need to capture any values)

Aliased Typeยง

struct FnOpaque<I, O, S = ()>(/* private fields */);