Function copy
const fn copy<T: Copy>(x: &T) -> T
Bitwise-copies a value.
This function is not magic; it is literally defined as
pub const
It is useful when you want to pass a function pointer to a combinator, rather than defining a new closure.
Example:
use copy;
let result_from_ffi_function: = Err;
let result_copied: = result_from_ffi_function.map_err;