Type Alias FnOpaque

Source
pub type FnOpaque<Input, O, S = ()> = Opaque<fn(&mut dyn FnMut(&mut dyn Parser<Input, Output = O, PartialState = S>)), Input, 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<Input, O, S = ()>(/* private fields */);