fix: Remove impl Send for Value for now

They're somewhat safe to use on a different thread, but we don't need
to for now. By removing this, we'll be made aware as needed.

(cherry picked from commit 2e953d0a1268e2f19671fdbc9e721fc630ac346b)
This commit is contained in:
Robert Hensing 2024-10-09 00:54:13 +02:00
parent f177507f88
commit ad0f5d0240

View file

@ -53,7 +53,6 @@ impl ValueType {
pub struct Value {
inner: NonNull<raw::Value>,
}
unsafe impl Send for Value {}
impl Value {
/// Take ownership of a new Value.
///