1 2 3 4 5 6 7 8 9
pub struct Foo { pub foo: extern "C" fn() } extern "C" fn the_foo() {} pub const FOO: Foo = Foo { foo: the_foo };