Crates.io | deprive |
lib.rs | deprive |
version | 0.2.1 |
source | src |
created_at | 2021-05-24 16:09:57.395305 |
updated_at | 2021-07-27 17:15:45.32227 |
description | Tired of negative impls? Use deprive instead of derive! |
homepage | https://github.com/ambiso/deprive |
repository | https://github.com/ambiso/deprive |
max_upload_size | |
id | 401461 |
size | 3,068 |
Tired:
struct X {}
impl !Send for X {}
impl !Sync for X {}
Wired:
#[deprive(Send, Sync)]
struct X {}