mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
33 lines
762 B
Rust
33 lines
762 B
Rust
extern crate salsa;
|
|
|
|
use std::rc::Rc;
|
|
|
|
#[salsa::query_group(NoSendSyncStorage)]
|
|
trait NoSendSyncDatabase: salsa::Database {
|
|
fn no_send_sync_value(&self, key: bool) -> Rc<bool>;
|
|
fn no_send_sync_key(&self, key: Rc<bool>) -> bool;
|
|
}
|
|
|
|
fn no_send_sync_value(_db: &dyn NoSendSyncDatabase, key: bool) -> Rc<bool> {
|
|
Rc::new(key)
|
|
}
|
|
|
|
fn no_send_sync_key(_db: &dyn NoSendSyncDatabase, key: Rc<bool>) -> bool {
|
|
*key
|
|
}
|
|
|
|
#[salsa::database(NoSendSyncStorage)]
|
|
#[derive(Default)]
|
|
struct DatabaseImpl {
|
|
storage: salsa::Storage<Self>,
|
|
}
|
|
|
|
impl salsa::Database for DatabaseImpl {}
|
|
|
|
#[test]
|
|
fn no_send_sync() {
|
|
let db = DatabaseImpl::default();
|
|
|
|
assert_eq!(db.no_send_sync_value(true), Rc::new(true));
|
|
assert!(!db.no_send_sync_key(Rc::new(false)));
|
|
}
|