chore: group Sync, Send impls by type
This commit is contained in:
parent
4f28ce4e3b
commit
0f533b909d
1 changed files with 8 additions and 4 deletions
|
|
@ -2642,12 +2642,16 @@ impl error::Error for LanguageError {}
|
|||
impl error::Error for QueryError {}
|
||||
|
||||
unsafe impl Send for Language {}
|
||||
unsafe impl Send for Parser {}
|
||||
unsafe impl Send for Query {}
|
||||
unsafe impl Send for QueryCursor {}
|
||||
unsafe impl Send for Tree {}
|
||||
unsafe impl Sync for Language {}
|
||||
|
||||
unsafe impl Send for Parser {}
|
||||
unsafe impl Sync for Parser {}
|
||||
|
||||
unsafe impl Send for Query {}
|
||||
unsafe impl Sync for Query {}
|
||||
|
||||
unsafe impl Send for QueryCursor {}
|
||||
unsafe impl Sync for QueryCursor {}
|
||||
|
||||
unsafe impl Send for Tree {}
|
||||
unsafe impl Sync for Tree {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue