A procedural macro to generate a hash representation of a function as a string slice.
The hash is generated as a const with the same visibility as the function the macro is applied to.
``` use hashfn::hashfn;
pub(crate) fn do_something() {}
// Will expand to
// pub(crate) const DOSOMETHING: &str = "
hashfn
will generate the name of the constant if it is omitted:
``` use hashfn::hashfn;
pub(crate) fn do_something() {}
// Will expand to
// pub(crate) const DOSOMETHINGHASH: &str = "