Answer is probably no, but just checking anyway.
Context: I'm building a DSL / playing with macros. I am trying to get rid of the "::apply"
impl FooBar {
fn apply(x: X, y: Y) -> ...
}
is there anyway to register apply as the 'default function' so we can do FooBar(x, y) instead of FooBar::apply(x, y) ?