refmove-0.1.3 doesn't have any documentation.
refmove: an experimental implementation of library-level by-move references
This crate contains an experimental implementation of library-level by-move references.
It will enable you to use self: RefMove<Self>
to pass your trait
object by value, even without allocation.
See #48055 for another approach to allow by-value trait objects.
Usage
Borrowing
extern crate refmove;
use ;
...
// Borrowing from stack
let _: = 42.anchor.borrow_move;
// Borrowing from box
let _: = Box new.anchor_box.borrow_move;
Extracting
extern crate refmove;
use ;
...