A function attempts to return a reference to a local variable or temporary that will be dropped when the function returns. Return an owned value instead, as the referenced data would no longer exist after the function ends.
E0515
rust A function attempts to return a reference to a local variable or temporary that will be dropped when the function returns. Return an owned value instead, as the referenced data would no longer exist after the function ends.