2021-01-05 22:20:08 +00:00
|
|
|
error[E0277]: `Rc<i32>` cannot be sent between threads safely
|
|
|
|
--> $DIR/pyclass_send.rs:4:1
|
|
|
|
|
|
|
|
|
4 | #[pyclass]
|
|
|
|
| ^^^^^^^^^^ `Rc<i32>` cannot be sent between threads safely
|
|
|
|
|
|
2021-02-13 01:17:10 +00:00
|
|
|
::: $WORKSPACE/src/class/impl_.rs
|
2021-01-05 22:20:08 +00:00
|
|
|
|
|
|
|
|
| pub struct ThreadCheckerStub<T: Send>(PhantomData<T>);
|
|
|
|
| ---- required by this bound in `ThreadCheckerStub`
|
|
|
|
|
|
|
|
|
= help: within `NotThreadSafe`, the trait `Send` is not implemented for `Rc<i32>`
|
|
|
|
= note: required because it appears within the type `NotThreadSafe`
|
|
|
|
= note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info)
|