pub trait Move:
Copy
+ Debug
+ Eq
+ PartialEq
+ Hash
+ Send
+ Sized
+ Sync
+ 'static { }
Expand description
A trait that collects the trait requirements of moves.
A blanket implementation covers all types that meet the requirements, so this trait should not be implemented directly.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.